update submodules for GHC.HetMet.GArrow -> Control.GArrow renaming
[ghc-hetmet.git] / rules / trace.mk
1 # -----------------------------------------------------------------------------
2 #
3 # (c) 2010 The University of Glasgow
4 #
5 # This file is part of the GHC build system.
6 #
7 # To understand how the build system works and how to modify it, see
8 #      http://hackage.haskell.org/trac/ghc/wiki/Building/Architecture
9 #      http://hackage.haskell.org/trac/ghc/wiki/Building/Modifying
10 #
11 # -----------------------------------------------------------------------------
12
13 # A helpful little debug macro.  Call it from a macro like this:
14
15 #  $(call trace, this-macro($1,$2,$3))
16 #
17 # And invoke the build system with TRACE=1 to turn on tracing.
18
19 define trace
20 $$(if $(TRACE),$$(warning $1),)
21 endef