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,$$($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) $$< $$@
44 $1/$2/$$($1_$2_PROG): $1/$2/$$($1_$2_PROG).prl
45 "$$(RM)" $$(RM_OPTS) $$@
46 echo '#!$$(PERL)' >> $$@
47 echo '$$$$TARGETPLATFORM = "$$(TARGETPLATFORM)";' >> $$@
50 $$($1_$2_INPLACE): $1/$2/$$($1_$2_PROG) | $$$$(dir $$$$@)/.
52 $$(EXECUTABLE_FILE) $$@
54 ifneq "$$($1_$2_INSTALL_IN)" ""
55 BINDIST_PERL_SOURCES += $1/$2/$$($1_$2_PROG).prl
57 install: install_$1_$2
60 install_$1_$2: $1/$2/$$($1_$2_PROG)
61 $$(INSTALL_DIR) "$$($1_$2_INSTALL_IN)"
62 $$(INSTALL_SCRIPT) $$(INSTALL_OPTS) $$< "$$($1_$2_INSTALL_IN)"