[project @ 2000-05-10 13:07:43 by simonmar]
[ghc-hetmet.git] / ghc / compiler / Makefile
1 # -----------------------------------------------------------------------------
2 # $Id: Makefile,v 1.77 2000/05/10 13:07:43 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 parser/Lex_HC_OPTS              = -fvia-C -K2m -H16m 
145 parser/Ctype_HC_OPTS            = -K2m -fvia-C
146
147 rename/ParseIface_HC_OPTS       += -Onot -H45m -K2m -fno-warn-incomplete-patterns
148 rename/ParseIface_HAPPY_OPTS    += -g
149
150 parser/Parser_HC_OPTS           += -Onot -H80m -optCrts-M80m -K2m -fno-warn-incomplete-patterns
151 parser/Parser_HAPPY_OPTS        += -g
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/FastString_HC_OPTS        = 
191 utils/StringBuffer_HC_OPTS      = -fvia-C -fno-prune-tydecls
192 utils/Digraph_HC_OPTS           = -fglasgow-exts 
193 utils/DirUtils_HC_OPTS          = 
194
195 ifeq "$(alpha_HOST_ARCH)" "1"
196 # "stbu" bug in alpha native code generator...
197 basicTypes/Unique_HC_OPTS       = 
198 endif
199
200 # flags for PrimPacked:
201 #
202 # -monly-3-regs 
203 #       because it contains a 'ccall strlen', which gets inlined by
204 #       gcc, causing a lack of registers.
205 #
206 # -optC-funfolding-interface-threshold10
207 #       To stop the definition of 'strLength', which calls strlen, getting
208 #       into the interface file and spreading the -monly-3-regs virus.
209 #       We need -optC here because the driver before 3.02 didn't understand
210 #       the -funfolding flags.
211
212 utils/PrimPacked_HC_OPTS        = -fvia-C -monly-3-regs -optC-funfolding-interface-threshold10
213
214 # Strictness analyser misbehaving in 2.10, fails to terminate on
215 # UpdAnal.lhs due to weird recursive datatype.  Bug was exposed by a
216 # separate bugfix to the fixpoint finder.
217 simplStg/UpdAnal_HC_OPTS        = -fno-strictness
218
219 # ----------------------------------------------------------------------------
220 #               C compilations
221
222 SRC_C_OPTS     += -O -I. -IcodeGen
223
224
225 # ----------------------------------------------------------------------------
226 #               Parsers/lexers
227
228 parser/hschooks.o : parser/hschooks.c
229         @$(RM) $@
230         $(HC) -c -o $@ $(HC_OPTS) parser/hschooks.c
231
232
233 # Interface-file parser uses Happy
234 SRC_HAPPY_OPTS += +RTS -K2m -H16m -RTS
235
236 rename/ParseIface.hs : rename/ParseIface.y
237         @$(RM) rename/ParseIface.hs rename/ParseIface.hinfo
238         $(HAPPY) $(HAPPY_OPTS) -g rename/ParseIface.y
239         @chmod 444 rename/ParseIface.hs
240
241 parser/Parser.hs : parser/Parser.y
242         @$(RM) parser/Parser.hs parser/ParseIface.hinfo
243         $(HAPPY) $(HAPPY_OPTS) -g parser/Parser.y
244         @chmod 444 parser/Parser.hs
245
246 #-----------------------------------------------------------------------------
247 #               Linking
248
249 SRC_LD_OPTS += -no-link-chk
250
251 ifneq "$(GhcWithHscBuiltViaC)" "YES"
252 ifeq "$(GhcReportCompiles)" "YES"
253 SRC_LD_OPTS += -syslib misc -syslib exts
254 endif
255 endif
256
257 #-----------------------------------------------------------------------------
258 #               install
259
260 # We don't want hsc treated as an ordinary executable,
261 # but put it together with the libraries.
262 # Also don't want any interface files intstalled
263
264 INSTALL_LIBEXECS += hsc
265
266 #-----------------------------------------------------------------------------
267 #               depend
268
269 #
270 # Before doing `make depend', need to build all derived Haskell source files
271 #
272 depend :: $(LOOPS)
273
274 ifneq "$(GhcWithHscBuiltViaC)" "YES"
275 depend :: rename/ParseIface.hs
276 endif
277
278 #-----------------------------------------------------------------------------
279 #               clean
280
281 CLEAN_FILES += $(wildcard */*.$(way_)o */*.$(way_)hi)
282
283 # Extra tidy, remove the .hc files (if you've got them).
284 MAINTAINER_CLEAN_FILES += $(wildcard */*.hc) \
285         parser/Parser.hs rename/ParseIface.hs
286
287
288 #-----------------------------------------------------------------------------
289 #               TAGS setup
290
291 SRC_HSTAGS_OPTS += -fglasgow-exts -cpp
292 TAGS_HS_SRCS=$(foreach dir,$(DIRS),$(wildcard $(dir)/*.lhs))
293 TAGS_C_SRCS=$(strip $(foreach f,$(foreach dir,$(DIRS),$(wildcard $(dir)/*.c)),$(shell if [ -w $(f) ]; then echo $(f); else echo ''; fi)))
294
295 #-----------------------------------------------------------------------------
296 #               Include target-rule boilerplate
297
298 include $(TOP)/mk/target.mk
299
300 parser/%.o : parser/%.c
301