Improve build speed

This commit is contained in:
Manfred Touron 2017-04-22 23:52:04 +02:00
parent 99224eea32
commit c71d7dd40c
No known key found for this signature in database
GPG Key ID: 9CCF47DF1FD978A1
1 changed files with 3 additions and 2 deletions

View File

@ -29,12 +29,13 @@ install:
$(BINARIES): $(SOURCES)
$(GO) build -o $@ ./cmd/$@
$(GO) build -i -o $@ ./cmd/$@
.PHONY: test
test:
$(GO) get -t .
# $(GO) get -t .
$(GO) test -i -v .
$(GO) test -v .