summaryrefslogtreecommitdiff
path: root/utils/mkdependC/ghc.mk
blob: 229e3ee40e617c9e311e58ca252deeecbfa3998b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -----------------------------------------------------------------------------
#
# (c) 2009 The University of Glasgow
#
# This file is part of the GHC build system.
#
# To understand how the build system works and how to modify it, see
#      http://hackage.haskell.org/trac/ghc/wiki/Building/Architecture
#      http://hackage.haskell.org/trac/ghc/wiki/Building/Modifying
#
# -----------------------------------------------------------------------------

$(MKDEPENDC) : utils/mkdependC/mkdependC.prl | $$(dir $$@)/.
	"$(RM)" $(RM_OPTS) $@
	echo '#!$(PERL)'                               >> $@
	echo '$$DEFAULT_TMPDIR = "$(DEFAULT_TMPDIR)";' >> $@
	echo '$$CPP            = "$(CPP)";'            >> $@
	echo '$$BUILDPLATFORM  = "$(BUILDPLATFORM)";'  >> $@
	cat utils/mkdependC/mkdependC.prl              >> $@
	$(EXECUTABLE_FILE) $@

$(eval $(call all-target,utils/mkdependC,$(MKDEPENDC)))
$(eval $(call clean-target,utils/mkdependC,,$(MKDEPENDC)))