Skip to content

Commit

Permalink
Stop spewing output during make
Browse files Browse the repository at this point in the history
ECHO_V controls verbosity -- these rules should respect it.
  • Loading branch information
ascandella committed Dec 21, 2016
1 parent 569bedd commit b179b87
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -129,15 +129,15 @@ examples: .bin/thriftrw .bin/thriftrw-plugin-yarpc
$(ECHO_V)which thriftrw-plugin-fx >/dev/null || go install ./modules/rpc/thriftrw-plugin-fx
@$(call label,Generating example RPC bindings)
@echo
PATH=$(shell pwd)/.bin:$$PATH $(ECHO_)$(MAKE) -C examples/keyvalue kv/types.go ECHO_V=$(ECHO_V)
$(ECHO_V)PATH=$(shell pwd)/.bin:$$PATH $(MAKE) -C examples/keyvalue kv/types.go ECHO_V=$(ECHO_V)

.bin/thriftrw: vendor
mkdir -p .bin
./.build/build_vendored.sh .bin go.uber.org/thriftrw
$(ECHO_V)mkdir -p .bin
$(ECHO_V)./.build/build_vendored.sh .bin go.uber.org/thriftrw

.bin/thriftrw-plugin-yarpc: vendor
mkdir -p .bin
./.build/build_vendored.sh .bin go.uber.org/yarpc/encoding/thrift/thriftrw-plugin-yarpc
$(ECHO_V)mkdir -p .bin
$(ECHO_V)./.build/build_vendored.sh .bin go.uber.org/yarpc/encoding/thrift/thriftrw-plugin-yarpc

.PHONY: vendor
vendor:
Expand Down

0 comments on commit b179b87

Please sign in to comment.