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