Nicer Make output
E.g. CXX src/nix-log2xml/log2xml.o CC src/bsdiff-4.3/bsdiff.o GEN scripts/nix-channel LD src/libmain/libnixmain.so
This commit is contained in:
parent
e991ab942b
commit
ca73c0102f
10 changed files with 33 additions and 17 deletions
16
tracing.mk
Normal file
16
tracing.mk
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
V ?= 0
|
||||
|
||||
ifeq ($(V), 0)
|
||||
|
||||
trace-gen = @echo " GEN " $@;
|
||||
trace-cc = @echo " CC " $@;
|
||||
trace-cxx = @echo " CXX " $@;
|
||||
trace-ld = @echo " LD " $@;
|
||||
trace-ar = @echo " AR " $@;
|
||||
trace-install = @echo " INST " $@;
|
||||
trace-javac = @echo " JAVAC " $@;
|
||||
trace-jar = @echo " JAR " $@;
|
||||
|
||||
suppress = @
|
||||
|
||||
endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue