diff options
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -3,7 +3,7 @@ VERSION = $(shell git describe --tags) BUILDTIME = $(shell date +%Y.%m.%d_%H%M) -all: build +all: portmap.pb.go goimports vet build ./gus --version ./gus @@ -25,6 +25,13 @@ debian: goimports: goimports -w *.go +vet: + @GO111MODULE=off go vet + @echo this go binary package builds okay + clean: rm -f go.* rm -f gus + +portmap.pb.go: portmap.proto + autogenpb --proto portmap.proto |
