[project @ 1998-02-02 12:41:57 by simonm]
[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 PROJECTPATCHLEVEL \
40   CURRENT_DIR TMPDIR 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 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) $(DYN_LOADABLE_BITS)
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 #
106 # Option vars for the special ways (that the driver has special pleading for).
107 #
108 # ToDo: rename -DPROFILING to -D__SCC_PROFILING (or somesuch)
109 #              -DTICKY-TICKY TO __TICKY_TICKY__
110 #
111 #  (this is to make the naming consistent with other `standard' hscpp #defines )
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__ -optc-DCONCURRENT
128
129 # Way `mr': 
130 WAY_mr_NAME=profiled concurrent
131 WAY_mr_HC_OPTS+=-fstack-check -fconcurrent -fscc-profiling -D__CONCURRENT_HASKELL__ -DPROFILING -optc-DCONCURRENT -optc-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__ -DTICKY-TICKY -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__ -optc-DPAR -optc-DCONCURRENT
140
141 #
142 # Way `mg': 
143 #  Q: is passing -D__GRANSIM__ and -DGRAN to hscpp needed? No, just -D__GRANSIM__
144 WAY_mg_NAME=GranSim
145 WAY_mg_HC_OPTS+=-fstack-check -fconcurrent -fgransim -D__GRANSIM__ -D__CONCURRENT_HASKELL__ -optc-DCONCURRENT -optc-DGRAN
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