mirror of
https://github.com/NixOS/nix
synced 2025-07-08 02:43:54 +02:00
Add 'mk/' from commit '1eff3ad37f
'
git-subtree-dir: mk git-subtree-mainline:6ef32bddc1
git-subtree-split:1eff3ad37f
This commit is contained in:
commit
74ca70da3a
12 changed files with 492 additions and 0 deletions
16
mk/tracing.mk
Normal file
16
mk/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