[project @ 2001-03-27 09:38:02 by simonmar]
[ghc-hetmet.git] / ghc / compiler / Makefile
1 # -----------------------------------------------------------------------------
2 # $Id: Makefile,v 1.148 2001/03/27 09:38:02 simonmar Exp $
3
4 TOP = ..
5 include $(TOP)/mk/boilerplate.mk
6
7 #-----------------------------------------------------------------------------
8 # Building ghc different ways (default is just `normal' sequential)
9 WAYS=$(GhcCompilerWays)
10
11 # -----------------------------------------------------------------------------
12 #               Set HS_PROG
13
14 # Note: there have been reports of people running up against the ARG_MAX limit
15 # when linking ghc 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 ghc 'to minimise the environment. (or the
18 # equivalent of `env' if it doesn't exist locally).
19 #
20 ifneq "$(way)" "dll"
21 HS_PROG=ghc$(_way)-$(ProjectVersion)
22 else
23 HS_PROG=ghc-$(ProjectVersion)
24 endif
25
26 # -----------------------------------------------------------------------------
27 # Create compiler configuration
28
29 CURRENT_DIR     = ghc/compiler
30 CONFIG_HS       = main/Config.hs
31 boot :: $(CONFIG_HS)
32
33 $(CONFIG_HS) : $(FPTOOLS_TOP)/mk/config.mk Makefile
34         @$(RM) -f $(CONFIG_HS)
35         @echo -n "Creating $(CONFIG_HS) ... "
36         @echo "module Config where" >>$(CONFIG_HS)
37         @echo "cProjectName          = \"$(ProjectName)\"" >> $(CONFIG_HS)
38         @echo "cProjectVersion       = \"$(ProjectVersion)\"" >> $(CONFIG_HS)
39         @echo "cProjectVersionInt    = \"$(ProjectVersionInt)\"" >> $(CONFIG_HS)
40         @echo "cBooterVersion        = \"$(GhcVersion)\"" >> $(CONFIG_HS)
41         @echo "cHscIfaceFileVersion  = \"$(HscIfaceFileVersion)\"" >> $(CONFIG_HS)
42         @echo "cHOSTPLATFORM         = \"$(HOSTPLATFORM)\"" >> $(CONFIG_HS)
43         @echo "cTARGETPLATFORM       = \"$(TARGETPLATFORM)\"" >> $(CONFIG_HS)
44         @echo "cCURRENT_DIR          = \"$(CURRENT_DIR)\"" >> $(CONFIG_HS)
45         @echo "cGHC_LIB_DIR          = \"$(GHC_LIB_DIR)\"" >> $(CONFIG_HS)
46         @echo "cGHC_RUNTIME_DIR      = \"$(GHC_RUNTIME_DIR)\"" >> $(CONFIG_HS)
47         @echo "cGHC_UTILS_DIR        = \"$(GHC_UTILS_DIR)\"" >> $(CONFIG_HS)
48         @echo "cGHC_INCLUDE_DIR      = \"$(GHC_INCLUDE_DIR)\"" >> $(CONFIG_HS)
49         @echo "cGHC_DRIVER_DIR       = \"$(GHC_DRIVER_DIR)\"" >> $(CONFIG_HS)
50         @echo "cGCC                  = \"$(WhatGccIsCalled)\"" >> $(CONFIG_HS)
51         @echo "cMkDLL                = \"$(BLD_DLL)\"" >> $(CONFIG_HS)
52         @echo "cGhcWithNativeCodeGen = \"$(GhcWithNativeCodeGen)\"" >> $(CONFIG_HS)
53         @echo "cGhcUnregisterised    = \"$(GhcUnregisterised)\"" >> $(CONFIG_HS)
54         @echo "cLeadingUnderscore    = \"$(LeadingUnderscore)\"" >> $(CONFIG_HS)
55         @echo "cGHC_UNLIT            = \"$(GHC_UNLIT)\"" >> $(CONFIG_HS)
56         @echo "cGHC_MANGLER          = \"$(GHC_MANGLER)\"" >> $(CONFIG_HS)
57         @echo "cGHC_SPLIT            = \"$(GHC_SPLIT)\"" >> $(CONFIG_HS)
58         @echo "cGHC_SYSMAN           = \"$(GHC_SYSMAN)\"" >> $(CONFIG_HS)
59         @echo "cEnableWin32DLLs      = \"$(EnableWin32DLLs)\"" >> $(CONFIG_HS)
60         @echo "cCP                   = \"$(CP)\"" >> $(CONFIG_HS)
61         @echo "cRM                   = \"$(RM)\"" >> $(CONFIG_HS)
62         @echo "cCONTEXT_DIFF         = \"$(CONTEXT_DIFF)\"" >> $(CONFIG_HS)
63         @echo "cHaveLibGmp           = \"$(HaveLibGmp)\"" >> $(CONFIG_HS)
64         @echo "cUSER_WAY_NAMES       = \"$(USER_WAY_NAMES)\"" >> $(CONFIG_HS)
65         @echo "cUSER_WAY_OPTS        = \"$(USER_WAY_OPTS)\"" >> $(CONFIG_HS)
66         @echo "clibdir               = \"$(libdir)\"" >> $(CONFIG_HS)
67         @echo "clibexecdir           = \"$(libexecdir)\"" >> $(CONFIG_HS)
68         @echo "cdatadir              = \"$(datadir)\"" >> $(CONFIG_HS)
69         @echo "cbindir               = \"$(bindir)\"" >> $(CONFIG_HS)
70         @echo "cDEFAULT_TMPDIR       = \"$(DEFAULT_TMPDIR)\"" >> $(CONFIG_HS)
71         @echo "cFPTOOLS_TOP_ABS      = \"$(FPTOOLS_TOP_ABS)\"" >> $(CONFIG_HS)
72         @echo "cRAWCPP               = \"$(RAWCPP)\"" >> $(CONFIG_HS)
73         @echo done.
74
75 CLEAN_FILES += $(CONFIG_HS)
76
77 # -----------------------------------------------------------------------------
78 #               Set SRCS, HCS, OBJS
79 #
80 # First figure out DIRS, the source sub-directories
81 # Then derive SRCS by looking in them
82 #
83
84 DIRS = \
85   utils basicTypes types hsSyn prelude rename typecheck deSugar coreSyn \
86   specialise simplCore stranal stgSyn simplStg codeGen absCSyn main \
87   profiling parser usageSP cprAnalysis javaGen compMan
88
89 ifeq ($(GhcWithNativeCodeGen),YES)
90 DIRS += nativeGen
91 else
92 SRC_HC_OPTS += -DOMIT_NATIVE_CODEGEN
93 ifeq ($(GhcWithIlx),YES)
94 DIRS += ilxGen
95 SRC_HC_OPTS += -DILX
96 endif
97 endif
98
99 ifeq "$(BootingFromHc)" "YES"
100 # HC files are always from a self-booted compiler
101 ghc_411_at_least = 1
102 else
103 ghc_411_at_least = $(shell expr "$(GhcMinVersion)" \>= 11)
104 endif
105
106 # Only include GHCi if we're bootstrapping with at least version 411
107 ifeq "$(GhcWithInterpreter)" "YES"
108 ifeq "$(ghc_411_at_least)" "1"
109 SRC_HC_OPTS += -DGHCI
110 DIRS += ghci
111 endif
112 endif
113
114 HS_SRCS := $(foreach dir,$(DIRS),$(wildcard $(dir)/*.lhs) $(wildcard $(dir)/*.hs))
115 HS_SRCS := $(filter-out rename/ParseIface.hs parser/Parser.hs main/ParsePkgConf.hs $(CONFIG_HS), $(HS_SRCS))
116 HS_SRCS += $(CONFIG_HS)
117
118 ifneq "$(BootingFromHc)" "YES"
119 HS_SRCS += rename/ParseIface.hs parser/Parser.hs main/ParsePkgConf.hs
120 endif
121
122 HCS      = $(patsubst %.lhs, %.hc, $(patsubst %.hs, %.hc, $(HS_SRCS)))
123
124 ifeq "$(BootingFromHc)" "YES"
125 HCS     += rename/ParseIface.hc parser/Parser.hc main/ParsePkgConf.hc
126 endif
127
128 HS_OBJS  = \
129   $(patsubst %.hc, %.o, $(HCS)) \
130   parser/hschooks.o
131
132 DESTDIR       = $(INSTALL_LIBRARY_DIR_GHC)
133
134 #
135 # Add misc .c helper code (used by the frontend.)
136 #
137 C_SRCS += parser/hschooks.c
138
139 #
140 # Big Fudge to get around inherent problem that Makefile setup
141 # has got with 'mkdependC'.
142
143 SRC_MKDEPENDC_OPTS += -D__GLASGOW_HASKELL__=$(ProjectVersionInt) -I$(GHC_INCLUDES)
144
145 # -----------------------------------------------------------------------------
146 #               Haskell compilations
147
148 #
149 # Compiler to use for building ghc, use the build tree
150 # driver when booting.
151 #
152 HC=$(GHC)
153
154 #
155 # Use GHC for compiling C bits
156 #
157 ifeq "$(BootingFromHc)" "YES"
158 SRC_CC_OPTS += -D__GLASGOW_HASKELL__=$(ProjectVersionInt)
159 else
160 CC = $(HC)
161 CC_OPTS := $(addprefix -optc, $(CC_OPTS))
162 endif
163
164 # magic from GNU make manual to convert a list of values
165 # into a colon-separated list
166 empty:=
167 space:= $(empty) $(empty)
168
169 SRC_HC_OPTS += \
170   -cpp -fglasgow-exts -Rghc-timing \
171   -I. -IcodeGen -InativeGen -Iparser \
172   -i$(subst $(space),:,$(DIRS)) 
173
174 ifneq "$(mingw32_TARGET_OS)" "1"
175 SRC_HC_OPTS += -package concurrent -package posix -package text -package util
176 else
177 SRC_HC_OPTS += -package concurrent -package text -package util
178 endif
179
180 SRC_CC_OPTS += -Iparser -I. -I$(TOP)/includes -O
181 SRC_HC_OPTS += -recomp $(GhcHcOpts)
182 SRC_HC_OPTS += -H16m
183
184 #       Special flags for particular modules
185 #       The standard suffix rule for compiling a Haskell file
186 #       adds these flags to the command line
187
188 # not sure if this is required --SDM
189 main/Main_HC_OPTS               = -fvia-C
190
191 prelude/PrimOp_HC_OPTS          = -no-recomp -H80m
192
193 # because the NCG can't handle the 64-bit math in here
194 prelude/PrelRules_HC_OPTS       = -fvia-C
195
196 rename/ParseIface_HC_OPTS       += -Onot -H45m -fno-warn-incomplete-patterns
197 parser/Parser_HC_OPTS           += -Onot -fno-warn-incomplete-patterns
198 main/ParsePkgConf_HC_OPTS       += -fno-warn-incomplete-patterns
199
200 # The latest GHC version doesn't have a -K option yet, and it doesn't
201 # seem to be necessary anymore for the modules below.
202 ifeq "$(ghc_411_at_least)" "0"
203 rename/ParseIface_HC_OPTS       += -K2m
204 parser/Parser_HC_OPTS           += -K2m
205 endif
206
207 ifeq "$(TARGETPLATFORM)" "hppa1.1-hp-hpux9"
208 rename/RnMonad_HC_OPTS          =  -O2 -O2-for-C
209 endif
210
211 utils/StringBuffer_HC_OPTS      = -fvia-C -fno-prune-tydecls
212 utils/Digraph_HC_OPTS           = -fglasgow-exts 
213
214 # flags for PrimPacked:
215 #
216 # -monly-3-regs 
217 #       because it contains a 'ccall strlen', which gets inlined by
218 #       gcc, causing a lack of registers.
219 #
220 utils/PrimPacked_HC_OPTS        = -fvia-C -monly-3-regs
221
222 # ByteCodeItbls uses primops that the NCG doesn't support yet.
223 ghci/ByteCodeItbls_HC_OPTS      = -fvia-C
224
225 # CSE interacts badly with the top-level IORefs in DriverState, causing some
226 # of them to be commoned up.  We have a fix for this in 5.00+, but earlier
227 # versions of the compiler will need CSE turned off on this module.
228 main/DriverState_HC_OPTS        = -fno-cse
229
230 # ----------------------------------------------------------------------------
231 #               C compilations
232
233 SRC_C_OPTS     += -O -I. -IcodeGen
234
235
236 # ----------------------------------------------------------------------------
237 #               Generate supporting stuff for prelude/PrimOp.lhs 
238 #               from prelude/primops.txt
239
240 GENPOC=$(TOP)/utils/genprimopcode/genprimopcode
241
242 PRIMOP_BITS=primop-data-decl.hs-incl \
243             primop-tag.hs-incl  \
244             primop-list.hs-incl  \
245             primop-has-side-effects.hs-incl  \
246             primop-out-of-line.hs-incl  \
247             primop-commutable.hs-incl  \
248             primop-needs-wrapper.hs-incl  \
249             primop-can-fail.hs-incl  \
250             primop-strictness.hs-incl  \
251             primop-usage.hs-incl  \
252             primop-primop-info.hs-incl
253
254 ifneq "$(BootingFromHc)" "YES"
255 prelude/PrimOp.lhs prelude/PrimOp.o: $(PRIMOP_BITS)
256 endif
257
258 ifneq "$(BootingFromHc)" "YES"
259 depend :: $(PRIMOP_BITS)
260 endif
261
262 primop-data-decl.hs-incl: prelude/primops.txt
263         $(GENPOC) --data-decl          < $< > $@
264 primop-tag.hs-incl: prelude/primops.txt
265         $(GENPOC) --primop-tag         < $< > $@
266 primop-list.hs-incl: prelude/primops.txt
267         $(GENPOC) --primop-list        < $< > $@
268 primop-has-side-effects.hs-incl: prelude/primops.txt
269         $(GENPOC) --has-side-effects   < $< > $@
270 primop-out-of-line.hs-incl: prelude/primops.txt
271         $(GENPOC) --out-of-line        < $< > $@
272 primop-commutable.hs-incl: prelude/primops.txt
273         $(GENPOC) --commutable         < $< > $@
274 primop-needs-wrapper.hs-incl: prelude/primops.txt
275         $(GENPOC) --needs-wrapper      < $< > $@
276 primop-can-fail.hs-incl: prelude/primops.txt
277         $(GENPOC) --can-fail           < $< > $@
278 primop-strictness.hs-incl: prelude/primops.txt
279         $(GENPOC) --strictness         < $< > $@
280 primop-usage.hs-incl: prelude/primops.txt
281         $(GENPOC) --usage              < $< > $@
282 primop-primop-info.hs-incl: prelude/primops.txt
283         $(GENPOC) --primop-primop-info < $< > $@
284
285
286
287 # ----------------------------------------------------------------------------
288 #               Parsers/lexers
289
290 SRC_HAPPY_OPTS += +RTS -K2m -H16m -RTS  $(GHC_HAPPY_OPTS)
291
292 #-----------------------------------------------------------------------------
293 #               Linking
294
295 SRC_LD_OPTS += -no-link-chk 
296
297 # -----------------------------------------------------------------------------
298 # create ghc-inplace, a convenient way to run ghc from the build tree...
299
300 all :: ghc-inplace
301
302 ghc-inplace : $(HS_PROG)
303         @$(RM) $@
304         echo '#!/bin/sh' >>$@
305         echo exec $(FPTOOLS_TOP_ABS)/ghc/compiler/$(HS_PROG) -B$(FPTOOLS_TOP_ABS) '"$$@"' >>$@
306         chmod 755 $@
307
308 CLEAN_FILES += ghc-inplace
309
310 #-----------------------------------------------------------------------------
311 #               install
312
313 # We don't want ghc treated as an ordinary executable,
314 # but put it together with the libraries.
315 # Also don't want any interface files intstalled
316
317 INSTALL_LIBEXECS += $(HS_PROG)
318
319 #-----------------------------------------------------------------------------
320 #               clean
321
322 CLEAN_FILES += $(wildcard */*.$(way_)o */*.$(way_)hi)
323 CLEAN_FILES += $(PRIMOP_BITS)
324
325 # Extra tidy, remove the .hc files (if you've got them).
326 MAINTAINER_CLEAN_FILES += $(wildcard */*.hc) \
327         parser/Parser.info rename/ParseIface.info main/ParsePkgConf.info \
328         parser/Parser.hs rename/ParseIface.hs main/ParsePkgConf.hs
329
330 #-----------------------------------------------------------------------------
331 #               Include target-rule boilerplate
332
333 include $(TOP)/mk/target.mk