fedde4315f49ef3dc9bb49d4701eb54a0a2254be
[ghc-hetmet.git] / ghc / driver / Makefile
1 #-----------------------------------------------------------------------------
2 #
3
4 TOP=..
5 CURRENT_DIR=ghc/driver
6 include $(TOP)/mk/boilerplate.mk
7
8 INSTALLING=0
9
10 DYN_LOADABLE_BITS = \
11         ghc-asm.prl \
12         ghc-iface.prl \
13         ghc-consist.prl \
14         ghc-split.prl
15
16 SCRIPT_PROG = ghc
17 SCRIPT_OBJS = ghc.prl
18  
19 INTERP=perl
20
21 #
22 # The driver needs to know the options and names for 
23 # all possible ways, so we magically generate the
24 # the make variable names for them here.
25 #
26
27 WAY_NAMES = $(foreach way,$(ALL_WAYS),WAY_$(way)_NAME)
28 WAY_OPTS  = $(foreach way,$(ALL_WAYS),WAY_$(way)_HC_OPTS)
29
30 ifeq "$(INSTALLING)" "1"
31 TOP_PWD := $(prefix)
32 else
33 TOP_PWD := $(FPTOOLS_TOP_ABS)
34 endif
35
36 SCRIPT_SUBST_VARS := \
37   INSTALLING \
38   PROJECTNAME PROJECTVERSION PROJECTPATCHLEVEL \
39   CURRENT_DIR TMPDIR HOSTPLATFORM TARGETPLATFORM \
40   GHC_LIB_DIR GHC_RUNTIME_DIR GHC_UTILS_DIR GHC_INCLUDE_DIR \
41   GHC_OPT_HILEV_ASM GhcWithNativeCodeGen LeadingUnderscore\
42   GHC_UNLIT GHC_HSCPP GHC_HSC GHC_SYSMAN \
43   CP RM CONTEXT_DIFF \
44   $(WAY_NAMES) $(WAY_OPTS)
45
46 #
47 # When creating a binary distribution, we prefix the driver script
48 # with a short msg about what variables need to be set to get the
49 # script going. 
50 #
51
52 ifeq "$(BIN_DIST)" "1"
53 SCRIPT_PREFIX_FILES=prefix.txt
54 else
55 SCRIPT_SUBST_VARS += libdir libexecdir datadir bindir TOP_PWD
56 endif
57
58 all :: $(DYN_LOADABLE_BITS)
59
60 #
61 # Install setup:
62 #   the driver goes in $(bindir), the perl script helpers
63 #   in $(libdir)
64 #
65 # ToDo: allow different install name for driver?
66 #
67 INSTALL_SCRIPTS += $(SCRIPT_PROG)
68 INSTALL_LIBS    += $(DYN_LOADABLE_BITS)
69
70 #
71 # Before really installing the driver, we have to
72 # reconfigure it such that the paths it refers to,
73 # point to the installed utils.
74 #
75 install ::
76         @$(RM) $(SCRIPT_PROG)
77         @$(MAKE) $(MFLAGS) INSTALLING=1 $(SCRIPT_PROG)
78
79 #
80 # depend setup: other directories need the driver script to compute
81 # their dependencies, so `depend' is simply an alias for `all' here.
82 depend :: all
83
84 #
85 # Clean up
86 #
87 CLEAN_FILES += $(SCRIPT_OBJS) $(DYN_LOADABLE_BITS)
88
89 #
90 # Source distribution
91 #
92 SRC_DEST_FILES=$(patsubst %.prl,%.lprl,$(DYN_LOADABLE_BITS)) ghc.lprl ordering-passes test_mangler
93
94 include $(TOP)/mk/target.mk
95
96 # Hack to re-create the in-situ build tree driver script after 
97 # having installed it.
98 #
99 install ::
100         @$(RM) $(SCRIPT_PROG)
101         @$(MAKE) $(MFLAGS) BIN_DIST=0 $(SCRIPT_PROG)
102
103
104 #
105 # Option vars for the special ways (that the driver has special pleading for).
106 #
107 # ToDo: rename -DPROFILING to -D__SCC_PROFILING (or somesuch)
108 #              -DTICKY-TICKY TO __TICKY_TICKY__
109 #
110 #  (this is to make the naming consistent with other `standard' hscpp #defines )
111
112 # Way p:
113 WAY_p_NAME=profiling
114 WAY_p_HC_OPTS+=-fscc-profiling -DPROFILING -optc-DPROFILING
115
116 # Way t:
117 WAY_t_NAME+=ticky-ticky profiling
118 WAY_t_HC_OPTS=-fticky-ticky -DTICKY_TICKY -optc-DTICKY_TICKY
119
120 # Way `u':
121 WAY_u_NAME=unregisterized (using portable C only)
122 WAY_u_HC_OPTS=
123
124 # Way `mc': concurrent
125 WAY_mc_NAME=concurrent
126 WAY_mc_HC_OPTS+=-fstack-check -fconcurrent -D__CONCURRENT_HASKELL__ -optc-DCONCURRENT
127
128 # Way `mr': 
129 WAY_mr_NAME=profiled concurrent
130 WAY_mr_HC_OPTS+=-fstack-check -fconcurrent -fscc-profiling -D__CONCURRENT_HASKELL__ -DPROFILING -optc-DCONCURRENT -optc-DPROFILING
131
132 # Way `mt': 
133 WAY_mt_NAME=ticky-ticky concurrent
134 WAY_mt_HC_OPTS+=-fstack-check -fconcurrent -fticky-ticky -D__CONCURRENT_HASKELL__ -DTICKY-TICKY -optc-DCONCURRENT -optc-DTICKY_TICKY
135
136 # Way `mp': 
137 WAY_mp_NAME=parallel
138 WAY_mp_HC_OPTS+=-fstack-check -fconcurrent -D__PARALLEL_HASKELL__ -optc-DPAR -optc-DCONCURRENT
139
140 #
141 # Way `mg': 
142 #  Q: is passing -D__GRANSIM__ and -DGRAN to hscpp needed? No, just -D__GRANSIM__
143 WAY_mg_NAME=GranSim
144 WAY_mg_HC_OPTS+=-fstack-check -fconcurrent -fgransim -D__GRANSIM__ -D__CONCURRENT_HASKELL__ -optc-DCONCURRENT -optc-DGRAN
145
146 #
147 # Ways for different garbage collectors
148 #
149 WAY_2s_NAME=2-space GC
150 WAY_2s_HC_OPTS+=-optc-DGC2s
151
152 WAY_1s_NAME=1-space GC
153 WAY_1s_HC_OPTS+=-optc-DGC1s
154
155 WAY_du_NAME=dual-mode GC
156 WAY_du_HC_OPTS+=-optc-DGCdu