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