https://github.com/cilium/cilium
Raw File
Tip revision: ff97b307c57f9d46a0fe3e05cdb1523b016ccf26 authored by Ian Vernon on 03 August 2018, 21:41:30 UTC
Prepare for release v1.1.2
Tip revision: ff97b30
Makefile.quiet
ifeq ($(V),0)
	QUIET=@
	ECHO_CC=echo "  CC    $(notdir $(shell pwd))/$@"
	ECHO_GEN=echo "  GEN   $(notdir $(shell pwd))/"
	ECHO_GO=echo "  GO    $(notdir $(shell pwd))/$@"
	ECHO_CHECK=echo "  CHECK"
	ECHO_BAZEL=echo "  BAZEL $(notdir $(shell pwd))/$(notdir $(shell dirname $(ENVOY_BIN)))/$@"
	ECHO_GINKGO=echo "  GINKG $(notdir $(shell pwd))"
	ECHO_CLEAN=echo "  CLEAN"
else
	# The whitespace at below EOLs is required for verbose case!
	ECHO_CC=: 
	ECHO_GEN=: 
	ECHO_GO=: 
	ECHO_CHECK=: 
	ECHO_BAZEL=: 
	ECHO_GINKGO=: 
	ECHO_CLEAN=: 
endif

back to top