1 # -----------------------------------------------------------------------------
3 # (c) 2009 The University of Glasgow
5 # This file is part of the GHC build system.
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
11 # -----------------------------------------------------------------------------
14 # Build a perl script. Invoke like this:
16 # driver/mangler_PERL_SRC = ghc-asm.lprl
17 # driver/mangler_dist_PROG = ghc-asm
19 # $(eval $(call build-perl,driver/mangler,dist))
25 ifeq "$$($1_$2_TOPDIR)" "YES"
26 $1_$2_INPLACE = $(INPLACE_TOPDIR)/$$($1_$2_PROG)
28 $1_$2_INPLACE = $(INPLACE_BIN)/$$($1_$2_PROG)
31 $(call all-target,$$($1_$2_INPLACE))
33 $(call clean-target,$1,$2,$1/$2 $$($1_$2_INPLACE))
35 clean_$1 : clean_$1_$2
37 # INPLACE_BIN etc. might be empty if we're cleaning
38 ifeq "$(findstring clean,$(MAKECMDGOALS))" ""
39 ifneq "$$(BINDIST)" "YES"
40 $1/$2/$$($1_$2_PROG).prl: $1/$$($1_PERL_SRC) $$(UNLIT) | $$$$(dir $$$$@)/.
41 "$$(UNLIT)" $$(UNLIT_OPTS) $$< $$@
43 $1/$2/$$($1_$2_PROG): $1/$2/$$($1_$2_PROG).prl
44 "$$(RM)" $$(RM_OPTS) $$@
45 echo '#!$$(PERL)' >> $$@
46 echo '$$$$TARGETPLATFORM = "$$(TARGETPLATFORM)";' >> $$@
48 $$(EXECUTABLE_FILE) $$@
50 $$($1_$2_INPLACE): $1/$2/$$($1_$2_PROG) | $$$$(dir $$$$@)/.
52 $$(EXECUTABLE_FILE) $$@