[project @ 1998-03-05 13:12:16 by sof]
[ghc-hetmet.git] / ghc / compiler / Makefile
1 # -----------------------------------------------------------------------------
2 # $Id: Makefile,v 1.36 1998/03/05 13:12:20 sof 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 SUBDIRS
13
14 ifeq ($(IncludeTestDirsInBuild),YES)
15   SUBDIRS = tests
16 endif
17
18 # -----------------------------------------------------------------------------
19 #               Set HS_PROG, LIBRARY
20 # Setting HS_PROG and LIBRARY causes all targets in target.mk
21 # (included below) to kick in.
22
23 LIBRARY=libhsp.a
24
25 #
26 # Note: there have been reports of people running up against the ARG_MAX limit
27 # when linking hsc with all its constituent object files. The likely source of 
28 # the problem is that the environment is a bit too big, so a workaround could
29 # be to do ` env PATH=$(PATH) make hsc 'to minimise the environment. (or the
30 # equivalent of `env' if it doesn't exist locally).
31 #
32 HS_PROG=hsc
33
34
35 # -----------------------------------------------------------------------------
36 #               Compilation history for Patrick
37
38 # Make the sources first, because that's what the compilation history needs
39 $(HS_PROG) :: $(HS_SRCS)
40
41
42 # -----------------------------------------------------------------------------
43 #               Set SRCS, LOOPS, HCS, OBJS
44 #
45 # First figure out DIRS, the source sub-directories
46 # Then derive SRCS by looking in them
47 #
48
49 DIRS = \
50   utils basicTypes types hsSyn prelude rename typecheck deSugar coreSyn \
51   specialise simplCore stranal stgSyn simplStg codeGen absCSyn main \
52   reader profiling parser
53
54
55 ifeq ($(GhcWithNativeCodeGen),YES)
56 DIRS += nativeGen
57 else
58 SRC_HC_OPTS += -DOMIT_NATIVE_CODEGEN
59 endif
60
61
62 HS_SRCS = $(SRCS_UGNHS) \
63           $(foreach dir,$(DIRS),$(wildcard $(dir)/*.lhs)) \
64           rename/ParseIface.hs
65
66 # NB: it's no good to include *.hs in the top-line wildcard, because the .hs files
67 #     in parser/ may not have been created at that point.
68
69 HCS      = $(patsubst %.lhs, %.hc, $(patsubst %.hs, %.hc, $(HS_SRCS)))
70
71
72 HS_OBJS  = \
73   $(patsubst %.hc, %.o, $(HCS)) \
74   parser/hsclink.o parser/hschooks.o libhsp.a
75
76
77 DESTDIR       = $(INSTALL_LIBRARY_DIR_GHC)
78
79 SRCS_UGN      = $(wildcard parser/*.ugn)
80 SRCS_UGNC     = $(patsubst %.ugn, %.c, $(SRCS_UGN))
81 SRCS_UGNH     = $(patsubst %.ugn, %.h, $(SRCS_UGN))
82 SRCS_UGNHS    = $(patsubst parser/%.ugn, parser/U_%.hs, $(SRCS_UGN))
83 SRCS_UGN_OBJS = $(patsubst %.c, %.o, $(SRCS_UGNC))
84
85 #
86 # Add the generated C files to the C_SRCS, so as to let `depend'
87 # generate correct dependencies for them.
88 #
89 C_SRCS += $(SRCS_UGNC)
90
91 LIBOBJS = \
92   $(SRCS_UGN_OBJS) parser/hslexer.o parser/hsparser.tab.o \
93   parser/id.o parser/infix.o parser/syntax.o parser/type2context.o \
94   parser/util.o
95
96 #
97 # stuff you get for free in a source distribution
98
99 SRC_DIST_FILES += rename/ParseIface.hs \
100  parser/U_tree.c parser/tree.h parser/tree.c \
101  parser/hsparser.tab.c parser/hsparser.tab.h \
102  parser/hslexer.c
103
104 # -----------------------------------------------------------------------------
105 #               Haskell compilations
106
107 #
108 # Compiler to use for building hsc, use the build tree
109 # driver when booting.
110 #
111 ifneq "$(GhcWithHscBuiltViaC)" "YES"
112 HC=$(WithGhcHc)
113 else
114 HC=$(GHC_DRIVER_DIR)/ghc
115 endif
116
117 # magic from GNU make manual to convert a list of values
118 # into a colon-separated list
119 empty:=
120 space:= $(empty) $(empty)
121
122 SRC_HC_OPTS += \
123   -cpp -fglasgow-exts -Rghc-timing \
124   -I. -IcodeGen -InativeGen -Iparser \
125   -i$(subst $(space),:,$(DIRS))
126
127 SRC_CC_OPTS += -Iparser -I. -I$(TOP)/includes -O
128
129 SRC_HC_OPTS += -recomp $(GhcHcOpts)
130
131 #       Special flags for particular modules
132 #       The standard suffix rule for compiling a Haskell file
133 #       adds these flags to the command line
134
135 absCSyn/AbsCSyn_HC_OPTS         = -fno-omit-reexported-instances
136 absCSyn/CStrings_HC_OPTS        = -monly-3-regs
137
138 # Was 6m with 2.10
139 absCSyn/PprAbsC_HC_OPTS         = -H10m
140
141 basicTypes/IdInfo_HC_OPTS       = -K2m
142 coreSyn/AnnCoreSyn_HC_OPTS      = -fno-omit-reexported-instances
143 hsSyn/HsExpr_HC_OPTS            = -K2m
144 hsSyn/HsSyn_HC_OPTS             = -fno-omit-reexported-instances
145 main/Main_HC_OPTS               = -fvia-C -DPROJECTVERSION=$(GhcProjectVersion)
146 main/MkIface_HC_OPTS            = -DPROJECTVERSION=$(GhcProjectVersionInt)
147 main/CmdLineOpts_HC_OPTS        = -fvia-C
148 nativeGen/PprMach_HC_OPTS       = -K2m
149 nativeGen/MachMisc_HC_OPTS      = -K2m -fvia-C
150 nativeGen/MachCode_HC_OPTS      = -H10m
151 parser/UgenAll_HC_OPTS          = -fvia-C '-\#include"hspincl.h"'
152 parser/UgenUtil_HC_OPTS         = -fvia-C '-\#include"hspincl.h"'
153 parser/U_constr_HC_OPTS         = -fvia-C '-\#include"hspincl.h"'
154 parser/U_binding_HC_OPTS        = -fvia-C '-\#include"hspincl.h"'
155 parser/U_pbinding_HC_OPTS       = -fvia-C '-\#include"hspincl.h"'
156 parser/U_entidt_HC_OPTS         = -fvia-C '-\#include"hspincl.h"'
157 parser/U_list_HC_OPTS           = -fvia-C '-\#include"hspincl.h"'
158 parser/U_literal_HC_OPTS        = -fvia-C '-\#include"hspincl.h"'
159 parser/U_maybe_HC_OPTS          = -fvia-C '-\#include"hspincl.h"'
160 parser/U_either_HC_OPTS         = -fvia-C '-\#include"hspincl.h"'
161 parser/U_qid_HC_OPTS            = -fvia-C '-\#include"hspincl.h"'
162 parser/U_tree_HC_OPTS           = -H12m -fvia-C '-\#include"hspincl.h"'
163 parser/U_ttype_HC_OPTS          = -fvia-C '-\#include"hspincl.h"'
164 prelude/PrimOp_HC_OPTS          = -H12m -K3m
165 reader/Lex_HC_OPTS              = -K2m -H16m -fvia-C -DPROJECTVERSION=$(GhcProjectVersionInt)
166
167 # Heap was 6m with 2.10
168 reader/ReadPrefix_HC_OPTS       = -fvia-C '-\#include"hspincl.h"' -H10m
169
170 rename/ParseIface_HC_OPTS       += -Onot -H30m -fno-warn-incomplete-patterns
171
172 ifeq "$(TARGETPLATFORM)" "hppa1.1-hp-hpux9"
173 rename/RnMonad_HC_OPTS          = -fvia-C -O2 -O2-for-C
174 else
175 endif
176 rename/RnEnv_HC_OPTS            = -fvia-C
177 rename/RnSource_HC_OPTS         = -H12m
178 rename/RnIfaces_HC_OPTS         = -H8m -fvia-C
179 rename/RnExpr_HC_OPTS           = -H10m
180 rename/RnNames_HC_OPTS          = -H12m
181 rename/RnMonad_HC_OPTS          = -fvia-C
182 # Urk!  Really big heap for ParseUnfolding
183 #rename/ParseUnfolding_HC_OPTS  = -H45m         
184 specialise/Specialise_HC_OPTS   = -Onot -H12m
185 stgSyn/StgSyn_HC_OPTS           = -fno-omit-reexported-instances
186 typecheck/TcGenDeriv_HC_OPTS    = -H10m
187
188 # Was 10m for 2.10
189 typecheck/TcHsSyn_HC_OPTS       = -H15m 
190
191 # Was 10m for 2.10
192 typecheck/TcExpr_HC_OPTS        = -H15m
193
194 typecheck/TcEnv_HC_OPTS         = -H10m
195 utils/Argv_HC_OPTS              = -fvia-C -monly-3-regs
196 utils/SST_HC_OPTS               = -fvia-C
197 utils/PrimPacked_HC_OPTS        = -fvia-C -monly-3-regs
198 utils/FastString_HC_OPTS        = -fvia-C -monly-3-regs
199 utils/StringBuffer_HC_OPTS      = -fvia-C -fno-prune-tydecls
200 utils/Digraph_HC_OPTS           = -fglasgow-exts -fvia-C
201 utils/Outputable_HC_OPTS        = -monly-3-regs
202
203 # Strictness analyser misbehaving in 2.10, fails to terminate on
204 # UpdAnal.lhs due to weird recursive datatype.  Bug was exposed by a
205 # separate bugfix to the fixpoint finder.
206 simplStg/UpdAnal_HC_OPTS        = -fno-strictness
207
208 # ----------------------------------------------------------------------------
209 #               C compilations
210
211 SRC_C_OPTS     += -O -Iparser -I. -IcodeGen
212
213
214 # ----------------------------------------------------------------------------
215 #               Parsers/lexers
216
217 # Main parser uses Yacc/Bison
218 SRC_YACC_OPTS  += -d -v
219 # Suppress the generation of a default rule
220 SRC_FLEX_OPTS += -s
221
222 #
223 # Want to keep the intermediate (included in src distribs).
224 #
225 .PRECIOUS: %.tab.c %.tab.h parser/hslexer.c
226
227 parser/hschooks.o : parser/hschooks.c
228         @$(RM) $@
229         $(HC) -c -o $@ $(HCFLAGS) parser/hschooks.c
230
231
232 # Interface-file parser uses Happy
233 SRC_HAPPY_OPTS += +RTS -K2m -H10m -RTS
234
235 rename/ParseIface.hs : rename/ParseIface.y
236         @$(RM) rename/ParseIface.hs rename/ParseIface.hinfo
237         $(HAPPY) $(HAPPY_OPTS) -g rename/ParseIface.y
238         @chmod 444 rename/ParseIface.hs
239
240 #----------------------------------------------------------------------
241 #
242 # Building the stand-alone parser
243 #
244 all :: hsp
245
246 hsp: parser/printtree.o parser/main.o libhsp.a 
247         $(CC) -o $@ $(CC_OPTS) $^
248
249 CLEAN_FILES += hsp
250
251 #-----------------------------------------------------------------------------
252 #               Linking
253
254 SRC_LD_OPTS += -no-link-chk
255
256 #-----------------------------------------------------------------------------
257 #               install
258
259 # We don't want hsc treated as an ordinary executable,
260 # but put it together with the libraries.
261 # Also don't want any interface files intstalled
262
263 INSTALL_LIBEXECS += hsc hsp
264
265 #-----------------------------------------------------------------------------
266 #               depend
267
268 #
269 # Before doing `make depend', need to build all derived Haskell source files
270 #
271 depend :: $(LOOPS) $(SRCS_UGNHS) rename/ParseIface.hs
272
273 #-----------------------------------------------------------------------------
274 #               clean
275
276 CLEAN_FILES += $(wildcard */*.$(way_)o */*.$(way_)hi) \
277                $(SRCS_UGNC) $(SRCS_UGNH) \
278                $(SRCS_UGNHS)\
279                parser/hslexer.c parser/hsparser.tab.h parser/hsparser.tab.c
280
281 # Extra tidy, remove the .hc files (if you've got them).
282 MAINTAINER_CLEAN_FILES += $(wildcard */*.hc)
283
284
285 #-----------------------------------------------------------------------------
286 #               TAGS setup
287
288 SRC_HSTAGS_OPTS += -fglasgow-exts -cpp
289 TAGS_HS_SRCS=$(foreach dir,$(DIRS),$(wildcard $(dir)/*.lhs))
290 TAGS_C_SRCS=$(strip $(foreach f,$(foreach dir,$(DIRS),$(wildcard $(dir)/*.c)),$(shell if [ -w $(f) ]; then echo $(f); else echo ''; fi)))
291
292 #-----------------------------------------------------------------------------
293 #               Include target-rule boilerplate
294
295 include $(TOP)/mk/target.mk
296
297
298 #
299 # Special extra dependencies for yukky ugen stuff
300 #
301
302 parser/%.o : parser/%.c $(SRCS_UGNH)
303 parser/hslexer.o : parser/hslexer.c parser/hsparser.tab.h
304
305 parser/hspincl.h : $(SRCS_UGNH)
306 parser/UgenAll.o : parser/hspincl.h
307 parser/UgenUtil.o : parser/hspincl.h
308 parser/U_constr.o : parser/hspincl.h
309 parser/U_binding.o : parser/hspincl.h
310 parser/U_pbinding.o : parser/hspincl.h
311 parser/U_entidt.o : parser/hspincl.h
312 parser/U_list.o : parser/hspincl.h
313 parser/U_literal.o : parser/hspincl.h
314 parser/U_maybe.o : parser/hspincl.h
315 parser/U_either.o : parser/hspincl.h
316 parser/U_qid.o : parser/hspincl.h
317 parser/U_tree.o : parser/hspincl.h
318 parser/U_ttype.o : parser/hspincl.h
319 parser/printtree.o : parser/hspincl.h
320 reader/ReadPrefix.o : parser/hspincl.h