diff options
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -3,7 +3,7 @@ VERSION = $(shell git describe --tags) BUILDTIME = $(shell date +%s) -justinstall: install +justinstall: install-verbose # This will re-generate ALL of the needed autogenerated .pb.go files generate: clean @@ -26,6 +26,10 @@ install: goimports GO111MODULE=off go install \ -ldflags "-X main.VERSION=${VERSION} -X main.BUILDTIME=${BUILDTIME}" +install-verbose: goimports + GO111MODULE=off go install -v \ + -ldflags "-X main.VERSION=${VERSION} -X main.BUILDTIME=${BUILDTIME}" + vet: GO111MODULE=off go vet @@ -78,7 +82,7 @@ deb-with-commits-all: rm -f ~/incoming/*.deb forge commit --all forge normal - wit build deb --all --force --buildversion 8 + wit build deb --all --force --buildversion 9 deb-with-commits-all-riscv64: make commit |
