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

fix(Makefile): disable verbose on build
pull/613/head
Adam Reese 9 years ago
commit 2d9563b483

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

Loading…
Cancel
Save