[project @ 2000-07-17 11:15:07 by simonmar]
[ghc-hetmet.git] / ghc / compiler / Makefile
1 # -----------------------------------------------------------------------------
2 # $Id: Makefile,v 1.84 2000/07/17 11:15:08 simonmar Exp $
3
4 TOP = ..
5 include $(TOP)/mk/boilerplate.mk
6
7 #-----------------------------------------------------------------------------
8 # Building hsc different ways (default is just `normal' sequential)
9 WAYS=$(GhcCompilerWays)
10
11 # -----------------------------------------------------------------------------
12 #               Set HS_PROG, LIBRARY
13
14 # Note: there have been reports of people running up against the ARG_MAX limit
15 # when linking hsc with all its constituent object files. The likely source of 
16 # the problem is that the environment is a bit too big, so a workaround could
17 # be to do ` env PATH=$(PATH) make hsc 'to minimise the environment. (or the
18 # equivalent of `env' if it doesn't exist locally).
19 #
20 HS_PROG=hsc$(_way)
21
22
23 # -----------------------------------------------------------------------------
24 #               Compilation history for Patrick
25
26 # Make the sources first, because that's what the compilation history needs
27 $(HS_PROG) :: $(HS_SRCS)
28
29
30 # -----------------------------------------------------------------------------
31 #               Set SRCS, LOOPS, HCS, OBJS
32 #
33 # First figure out DIRS, the source sub-directories
34 # Then derive SRCS by looking in them
35 #
36
37 DIRS = \
38   utils basicTypes types hsSyn prelude rename typecheck deSugar coreSyn \
39   specialise simplCore stranal stgSyn simplStg codeGen absCSyn main \
40   profiling parser usageSP cprAnalysis javaGen
41
42
43 ifeq ($(GhcWithNativeCodeGen),YES)
44 DIRS += nativeGen
45 else
46 SRC_HC_OPTS += -DOMIT_NATIVE_CODEGEN
47 ifeq ($(GhcWithIlx),YES)
48 DIRS += ilxGen
49 SRC_HC_OPTS += -DILX
50 endif
51 endif
52
53
54 HS_SRCS = $(foreach dir,$(DIRS),$(wildcard $(dir)/*.lhs))
55
56 ifneq "$(GhcWithHscBuiltViaC)" "YES"
57 HS_SRCS += rename/ParseIface.hs parser/Parser.hs
58 endif
59
60 HCS      = $(patsubst %.lhs, %.hc, $(patsubst %.hs, %.hc, $(HS_SRCS)))
61
62 # ParseIface.hs ain't part of HS_SRCS when this is on..
63 ifeq "$(GhcWithHscBuiltViaC)" "YES"
64 HCS      += rename/ParseIface.hc parser/Parser.hc
65 endif
66
67 HS_OBJS  = \
68   $(patsubst %.hc, %.o, $(HCS)) \
69   parser/hschooks.o
70
71
72 DESTDIR       = $(INSTALL_LIBRARY_DIR_GHC)
73
74 #
75 # Add misc .c helper code (used by the frontend.)
76 #
77 C_SRCS += parser/hschooks.c
78
79 #
80 # Big Fudge to get around inherent problem that Makefile setup
81 # has got with 'mkdependC'.
82
83 SRC_MKDEPENDC_OPTS += -D__GLASGOW_HASKELL__=$(ProjectVersionInt)
84
85 # stuff you get for free in a source distribution
86
87 # SRC_DIST_FILES += rename/ParseIface.hs rename/Parser.hs
88
89 # -----------------------------------------------------------------------------
90 #               Haskell compilations
91
92 #
93 # Compiler to use for building hsc, use the build tree
94 # driver when booting.
95 #
96 ifneq "$(GhcWithHscBuiltViaC)" "YES"
97 HC=$(WithGhcHc)
98 else
99 HC=$(GHC_INPLACE)
100 endif
101
102 # magic from GNU make manual to convert a list of values
103 # into a colon-separated list
104 empty:=
105 space:= $(empty) $(empty)
106
107 SRC_HC_OPTS += \
108   -cpp -fglasgow-exts -Rghc-timing \
109   -I. -IcodeGen -InativeGen -Iparser \
110   -i$(subst $(space),:,$(DIRS)) 
111
112 SRC_CC_OPTS += -Iparser -I. -I$(TOP)/includes -O
113
114 SRC_HC_OPTS += -recomp $(GhcHcOpts)
115
116 #       Special flags for particular modules
117 #       The standard suffix rule for compiling a Haskell file
118 #       adds these flags to the command line
119
120 # Was 6m with 2.10
121 absCSyn/PprAbsC_HC_OPTS         = -H10m
122
123 basicTypes/IdInfo_HC_OPTS       = -K2m
124 codeGen/CgCase_HC_OPTS          = -fno-prune-tydecls
125 hsSyn/HsExpr_HC_OPTS            = -K2m
126 main/Main_HC_OPTS               = 
127 main/Constants_HC_OPTS          = -DHscIfaceFileVersion=$(HscIfaceFileVersion)
128
129 ifneq "$(GhcWithHscBuiltViaC)" "YES"
130 ifeq "$(GhcReportCompiles)" "YES"
131 main/Main_HC_OPTS               += -syslib misc -DREPORT_TO_MOTHERLODE
132 endif
133 endif
134
135 main/CmdLineOpts_HC_OPTS        =  -K6m
136 nativeGen/PprMach_HC_OPTS       = -K2m
137 nativeGen/MachMisc_HC_OPTS      = -K2m 
138 nativeGen/MachCode_HC_OPTS      = -H10m
139
140 # Avoids Bug in 3.02, it seems
141 usageSP/UsageSPInf_HC_OPTS      = -Onot
142
143 prelude/PrimOp_HC_OPTS          = -H12m -K3m
144 prelude/PrelRules_HC_OPTS       = -fvia-C
145
146 parser/Lex_HC_OPTS              = -fvia-C -K2m -H16m 
147 parser/Ctype_HC_OPTS            = -K2m -fvia-C
148
149 rename/ParseIface_HC_OPTS       += -Onot -H45m -K2m -fno-warn-incomplete-patterns
150
151 parser/Parser_HC_OPTS           += -Onot -H80m -optCrts-M80m -K2m -fno-warn-incomplete-patterns
152
153 ifeq "$(TARGETPLATFORM)" "hppa1.1-hp-hpux9"
154 rename/RnMonad_HC_OPTS          =  -O2 -O2-for-C
155 endif
156
157 rename/RnEnv_HC_OPTS            = 
158 rename/RnSource_HC_OPTS         = -H12m
159 rename/RnIfaces_HC_OPTS         = -H8m 
160 rename/RnExpr_HC_OPTS           = -H10m
161 rename/RnNames_HC_OPTS          = -H12m
162 rename/RnMonad_HC_OPTS          = 
163 specialise/Specialise_HC_OPTS   = -Onot -H12m
164 simplCore/Simplify_HC_OPTS      = -H15m 
165 simplCore/OccurAnal_HC_OPTS     = -H10m
166 typecheck/TcGenDeriv_HC_OPTS    = -H10m
167
168 # tmp, -- SDM
169 specialise/Specialise_HC_OPTS   += -fno-prune-tydecls
170 hsSyn/HsBasic_HC_OPTS           += -fno-prune-tydecls
171 simplCore/SimplMonad_HC_OPTS    += -fno-prune-tydecls
172 absCSyn/AbsCSyn_HC_OPTS         += -fno-prune-tydecls
173 absCSyn/AbsCUtils_HC_OPTS       += -fno-prune-tydecls
174 codeGen/CgBindery_HC_OPTS       += -fno-prune-tydecls
175 codeGen/CgLetNoEscape_HC_OPTS   += -fno-prune-tydecls
176 codeGen/CgExpr_HC_OPTS          += -fno-prune-tydecls
177 nativeGen/AbsCStixGen_HC_OPTS   += -fno-prune-tydecls
178
179 # Was 10m for 2.10
180 typecheck/TcHsSyn_HC_OPTS       = -H15m 
181
182
183 # Was 10m for 2.10
184 typecheck/TcExpr_HC_OPTS        = -H15m
185 typecheck/TcBinds_HC_OPTS       = -H10m
186
187 typecheck/TcEnv_HC_OPTS         = -H10m
188 utils/Argv_HC_OPTS              = -fvia-C
189 utils/SST_HC_OPTS               = 
190 utils/StringBuffer_HC_OPTS      = -fvia-C -fno-prune-tydecls
191 utils/Digraph_HC_OPTS           = -fglasgow-exts 
192 utils/DirUtils_HC_OPTS          = 
193
194 # temporary, due to bug in NCG  (SDM, 1/6/2000)
195 utils/FastString_HC_OPTS        = -fvia-C
196
197 ifeq "$(alpha_HOST_ARCH)" "1"
198 # "stbu" bug in alpha native code generator...
199 basicTypes/Unique_HC_OPTS       = 
200 endif
201
202 # flags for PrimPacked:
203 #
204 # -monly-3-regs 
205 #       because it contains a 'ccall strlen', which gets inlined by
206 #       gcc, causing a lack of registers.
207 #
208 # -optC-funfolding-interface-threshold7
209 #       To stop the definition of 'strLength', which calls strlen, getting
210 #       into the interface file and spreading the -monly-3-regs virus.
211 #       We need -optC here because the driver before 3.02 didn't understand
212 #       the -funfolding flags.
213
214 utils/PrimPacked_HC_OPTS        = -fvia-C -monly-3-regs -optC-funfolding-interface-threshold7
215
216 # Strictness analyser misbehaving in 2.10, fails to terminate on
217 # UpdAnal.lhs due to weird recursive datatype.  Bug was exposed by a
218 # separate bugfix to the fixpoint finder.
219 simplStg/UpdAnal_HC_OPTS        = -fno-strictness
220
221 # ----------------------------------------------------------------------------
222 #               C compilations
223
224 SRC_C_OPTS     += -O -I. -IcodeGen
225
226
227 # ----------------------------------------------------------------------------
228 #               Parsers/lexers
229
230 parser/hschooks.o : parser/hschooks.c
231         @$(RM) $@
232         $(HC) -c -o $@ $(HC_OPTS) parser/hschooks.c
233
234
235 # Interface-file parser uses Happy
236 SRC_HAPPY_OPTS += +RTS -K2m -H16m -RTS  $(GHC_HAPPY_OPTS)
237
238 rename/ParseIface.hs : rename/ParseIface.y
239         @$(RM) rename/ParseIface.hs rename/ParseIface.hinfo
240         $(HAPPY) $(HAPPY_OPTS) rename/ParseIface.y
241         @chmod 444 rename/ParseIface.hs
242
243 parser/Parser.hs : parser/Parser.y
244         @$(RM) parser/Parser.hs parser/ParseIface.hinfo
245         $(HAPPY) $(HAPPY_OPTS) parser/Parser.y
246         @chmod 444 parser/Parser.hs
247
248 #-----------------------------------------------------------------------------
249 #               Linking
250
251 SRC_LD_OPTS += -no-link-chk
252
253 ifneq "$(GhcWithHscBuiltViaC)" "YES"
254 ifeq "$(GhcReportCompiles)" "YES"
255 SRC_LD_OPTS += -syslib misc -syslib exts
256 endif
257 endif
258
259 #-----------------------------------------------------------------------------
260 #               install
261
262 # We don't want hsc treated as an ordinary executable,
263 # but put it together with the libraries.
264 # Also don't want any interface files intstalled
265
266 INSTALL_LIBEXECS += hsc
267
268 #-----------------------------------------------------------------------------
269 #               depend
270
271 #
272 # Before doing `make depend', need to build all derived Haskell source files
273 #
274 depend :: $(LOOPS)
275
276 ifneq "$(GhcWithHscBuiltViaC)" "YES"
277 depend :: rename/ParseIface.hs
278 endif
279
280 #-----------------------------------------------------------------------------
281 #               clean
282
283 CLEAN_FILES += $(wildcard */*.$(way_)o */*.$(way_)hi)
284
285 # Extra tidy, remove the .hc files (if you've got them).
286 MAINTAINER_CLEAN_FILES += $(wildcard */*.hc) \
287         parser/Parser.hs rename/ParseIface.hs
288
289
290 #-----------------------------------------------------------------------------
291 #               TAGS setup
292
293 SRC_HSTAGS_OPTS += -fglasgow-exts -cpp
294 TAGS_HS_SRCS=$(foreach dir,$(DIRS),$(wildcard $(dir)/*.lhs))
295 TAGS_C_SRCS=$(strip $(foreach f,$(foreach dir,$(DIRS),$(wildcard $(dir)/*.c)),$(shell if [ -w $(f) ]; then echo $(f); else echo ''; fi)))
296
297 #-----------------------------------------------------------------------------
298 #               Include target-rule boilerplate
299
300 include $(TOP)/mk/target.mk
301
302 parser/%.o : parser/%.c
303