Add new LLVM code generator to GHC. (Version 2)
[ghc-hetmet.git] / rules / build-perl.mk
1 # -----------------------------------------------------------------------------
2 #
3 # (c) 2009 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
14 # Build a perl script.  Invoke like this:
15 #
16 # driver/mangler_PERL_SRC = ghc-asm.lprl
17 # driver/mangler_dist_PROG = ghc-asm
18 #
19 # $(eval $(call build-perl,driver/mangler,dist))
20
21 define build-perl
22 # $1 = dir
23 # $2 = distdir
24
25 ifeq "$$($1_$2_TOPDIR)" "YES"
26 $1_$2_INPLACE = $$(INPLACE_TOPDIR)/$$($1_$2_PROG)
27 else
28 $1_$2_INPLACE = $$(INPLACE_BIN)/$$($1_$2_PROG)
29 endif
30
31 $(call all-target,$1_$2,$$($1_$2_INPLACE))
32
33 $(call clean-target,$1,$2,$1/$2 $$($1_$2_INPLACE))
34 .PHONY: clean_$1
35 clean_$1 : clean_$1_$2
36
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) $$< $$@
42 endif
43
44 $1/$2/$$($1_$2_PROG): $1/$2/$$($1_$2_PROG).prl
45         "$$(RM)" $$(RM_OPTS) $$@
46         echo '#!$$(PERL)'                                  >> $$@
47         echo '$$$$TARGETPLATFORM  = "$$(TARGETPLATFORM)";' >> $$@
48         echo '$$$$TABLES_NEXT_TO_CODE  = "$(GhcEnableTablesNextToCode)";' >> $$@
49         cat $$<                                            >> $$@
50
51 $$($1_$2_INPLACE): $1/$2/$$($1_$2_PROG) | $$$$(dir $$$$@)/.
52         "$$(CP)" $$< $$@
53         $$(EXECUTABLE_FILE) $$@
54
55 ifneq "$$($1_$2_INSTALL_IN)" ""
56 BINDIST_PERL_SOURCES += $1/$2/$$($1_$2_PROG).prl
57
58 install: install_$1_$2
59
60 .PHONY: install_$1_$2
61 install_$1_$2: $1/$2/$$($1_$2_PROG)
62         $$(INSTALL_DIR) "$$($1_$2_INSTALL_IN)"
63         $$(INSTALL_SCRIPT) $$(INSTALL_OPTS) $$< "$$($1_$2_INSTALL_IN)"
64 endif
65 endif
66
67 endef