Merge pull request #19 from adamreese/fix/makefile-madness

fix(Makefile): disable verbose on build
This commit is contained in:
Adam Reese 2016-04-14 15:23:44 -07:00
commit 2d9563b483

View file

@ -21,7 +21,7 @@ include versioning.mk
all: build
.PHONY: build
build: GOFLAGS += -v -a -installsuffix cgo
build: GOFLAGS += -a -installsuffix cgo
build:
@for i in $(BINARIES); do \
CGO_ENABLED=0 GOOS=$(GOOS) GOARCH=$(GOARCH) $(GO) build -o $(BINDIR)/$$i $(GOFLAGS) -tags '$(TAGS)' -ldflags '$(LDFLAGS)' ./cmd/$$i || exit 1; \