12 lines
No EOL
205 B
Makefile
12 lines
No EOL
205 B
Makefile
BUILD_FILES = $(shell go list -f '{{range .GoFiles}}{{$$.Dir}}/{{.}}\
|
|
{{end}}' ./...)
|
|
|
|
# export GOFLAGS := -mod=vendor $GOFLAGS
|
|
|
|
bin/gh: $(BUILD_FILES)
|
|
go build -o "$@"
|
|
|
|
test:
|
|
go test ./...
|
|
|
|
.PHONY: test |