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