cli/Makefile
Mislav Marohnić e867322ec4 Add Makefile
2019-10-07 16:58:29 +02:00

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 "$@"