[project @ 2001-04-13 13:37:24 by panne]
[ghc-hetmet.git] / ghc / compiler / Makefile
1 # -----------------------------------------------------------------------------
2 # $Id: Makefile,v 1.154 2001/04/13 13:37:24 panne 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 "cDEFAULT_TMPDIR       = \"$(DEFAULT_TMPDIR)\"" >> $(CONFIG_HS)
67         @echo "cRAWCPP               = \"$(RAWCPP)\"" >> $(CONFIG_HS)
68         @echo done.
69
70 CLEAN_FILES += $(CONFIG_HS)
71
72 # -----------------------------------------------------------------------------
73 #               Set SRCS, HCS, OBJS
74 #
75 # First figure out DIRS, the source sub-directories
76 # Then derive SRCS by looking in them
77 #
78
79 DIRS = \
80   utils basicTypes types hsSyn prelude rename typecheck deSugar coreSyn \
81   specialise simplCore stranal stgSyn simplStg codeGen absCSyn main \
82   profiling parser usageSP cprAnalysis javaGen compMan
83
84 ifeq ($(GhcWithNativeCodeGen),YES)
85 DIRS += nativeGen
86 else
87 SRC_HC_OPTS += -DOMIT_NATIVE_CODEGEN
88 endif
89
90 ifeq ($(GhcWithIlx),YES)
91 DIRS += ilxGen
92 SRC_HC_OPTS += -DILX
93 endif
94
95 ifeq "$(BootingFromHc)" "YES"
96 # HC files are always from a self-booted compiler
97 ghc_411_at_least = 1
98 else
99 ghc_411_at_least = $(shell expr "$(GhcVersion)" \>= 4.11)
100 endif
101
102 # Only include GHCi if we're bootstrapping with at least version 411
103 ifeq "$(GhcWithInterpreter)" "YES"
104 ifeq "$(ghc_411_at_least)" "1"
105 SRC_HC_OPTS += -DGHCI
106 DIRS += ghci
107 endif
108 endif
109
110 HS_SRCS := $(foreach dir,$(DIRS),$(wildcard $(dir)/*.lhs) $(wildcard $(dir)/*.hs))
111 HS_SRCS := $(filter-out rename/ParseIface.hs parser/Parser.hs main/ParsePkgConf.hs $(CONFIG_HS), $(HS_SRCS))
112 HS_SRCS += $(CONFIG_HS)
113
114 ifneq "$(BootingFromHc)" "YES"
115 HS_SRCS += rename/ParseIface.hs parser/Parser.hs main/ParsePkgConf.hs
116 endif
117
118 HCS      = $(patsubst %.lhs, %.hc, $(patsubst %.hs, %.hc, $(HS_SRCS)))
119
120 ifeq "$(BootingFromHc)" "YES"
121 HCS     += rename/ParseIface.hc parser/Parser.hc main/ParsePkgConf.hc
122 endif
123
124 HS_OBJS  = \
125   $(patsubst %.hc, %.o, $(HCS)) \
126   parser/hschooks.o
127
128 DESTDIR       = $(INSTALL_LIBRARY_DIR_GHC)
129
130 #
131 # Add misc .c helper code (used by the frontend.)
132 #
133 C_SRCS += parser/hschooks.c
134
135 #
136 # Big Fudge to get around inherent problem that Makefile setup
137 # has got with 'mkdependC'.
138
139 SRC_MKDEPENDC_OPTS += -D__GLASGOW_HASKELL__=$(ProjectVersionInt) -I$(GHC_INCLUDES)
140
141 # -----------------------------------------------------------------------------
142 #               Haskell compilations
143
144 #
145 # Compiler to use for building ghc, use the build tree
146 # driver when booting.
147 #
148 HC=$(GHC)
149
150 #
151 # Use GHC for compiling C bits
152 #
153 ifeq "$(BootingFromHc)" "YES"
154 SRC_CC_OPTS += -D__GLASGOW_HASKELL__=$(ProjectVersionInt)
155 else
156 CC = $(HC)
157 CC_OPTS := $(addprefix -optc, $(CC_OPTS))
158 endif
159
160 # magic from GNU make manual to convert a list of values
161 # into a colon-separated list
162 empty:=
163 space:= $(empty) $(empty)
164
165 SRC_HC_OPTS += \
166   -cpp -fglasgow-exts -Rghc-timing \
167   -I. -IcodeGen -InativeGen -Iparser \
168   -i$(subst $(space),:,$(DIRS)) 
169
170 ifneq "$(mingw32_TARGET_OS)" "1"
171 SRC_HC_OPTS += -package concurrent -package posix -package text -package util
172 else
173 SRC_HC_OPTS += -package concurrent -package text -package util
174 main/TmpFiles_HC_OPTS += -Dmingw32_TARGET_OS
175 endif
176
177 SRC_CC_OPTS += -Iparser -I. -I$(TOP)/includes -O
178 SRC_HC_OPTS += -recomp $(GhcHcOpts)
179 SRC_HC_OPTS += -H16m
180
181 #       Special flags for particular modules
182 #       The standard suffix rule for compiling a Haskell file
183 #       adds these flags to the command line
184
185 # not sure if this is required --SDM
186 main/Main_HC_OPTS               = -fvia-C
187
188 prelude/PrimOp_HC_OPTS          = -no-recomp -H80m
189
190 # because the NCG can't handle the 64-bit math in here
191 prelude/PrelRules_HC_OPTS       = -fvia-C
192
193 rename/ParseIface_HC_OPTS       += -Onot -H45m -fno-warn-incomplete-patterns
194 parser/Parser_HC_OPTS           += -Onot -fno-warn-incomplete-patterns
195 main/ParsePkgConf_HC_OPTS       += -fno-warn-incomplete-patterns
196
197 # The latest GHC version doesn't have a -K option yet, and it doesn't
198 # seem to be necessary anymore for the modules below.
199 ifeq "$(ghc_411_at_least)" "0"
200 rename/ParseIface_HC_OPTS       += -K2m
201 parser/Parser_HC_OPTS           += -K2m
202 endif
203
204 ifeq "$(TARGETPLATFORM)" "hppa1.1-hp-hpux9"
205 rename/RnMonad_HC_OPTS          =  -O2 -O2-for-C
206 endif
207
208 utils/StringBuffer_HC_OPTS      = -fvia-C -fno-prune-tydecls
209 utils/Digraph_HC_OPTS           = -fglasgow-exts 
210
211 # flags for PrimPacked:
212 #
213 # -monly-3-regs 
214 #       because it contains a 'ccall strlen', which gets inlined by
215 #       gcc, causing a lack of registers.
216 #
217 utils/PrimPacked_HC_OPTS        = -fvia-C -monly-3-regs
218
219 # ByteCodeItbls uses primops that the NCG doesn't support yet.
220 ghci/ByteCodeItbls_HC_OPTS      = -fvia-C
221 ghci/ByteCodeLink_HC_OPTS       = -fvia-C
222
223 # CSE interacts badly with top-level IORefs (reportedly in DriverState and
224 # DriverMkDepend), causing some of them to be commoned up.  We have a fix for
225 # this in 5.00+, but earlier versions of the compiler will need CSE turned off.
226 # To be on the safe side, we disable CSE in *all* modules with top-level IORefs.
227 compMan/CompManager_HC_OPTS     = -fno-cse
228 ghci/InteractiveUI_HC_OPTS      = -fno-cse
229 main/CmdLineOpts_HC_OPTS        = -fno-cse
230 main/DriverFlags_HC_OPTS        = -fno-cse
231 main/DriverMkDepend_HC_OPTS     = -fno-cse
232 main/DriverPipeline_HC_OPTS     = -fno-cse
233 main/DriverState_HC_OPTS        = -fno-cse
234 main/DriverUtil_HC_OPTS         = -fno-cse
235 main/Finder_HC_OPTS             = -fno-cse
236 main/TmpFiles_HC_OPTS           = -fno-cse
237
238 # ----------------------------------------------------------------------------
239 #               C compilations
240
241 SRC_C_OPTS     += -O -I. -IcodeGen
242
243
244 # ----------------------------------------------------------------------------
245 #               Generate supporting stuff for prelude/PrimOp.lhs 
246 #               from prelude/primops.txt
247
248 GENPOC=$(TOP)/utils/genprimopcode/genprimopcode
249
250 PRIMOP_BITS=primop-data-decl.hs-incl \
251             primop-tag.hs-incl  \
252             primop-list.hs-incl  \
253             primop-has-side-effects.hs-incl  \
254             primop-out-of-line.hs-incl  \
255             primop-commutable.hs-incl  \
256             primop-needs-wrapper.hs-incl  \
257             primop-can-fail.hs-incl  \
258             primop-strictness.hs-incl  \
259             primop-usage.hs-incl  \
260             primop-primop-info.hs-incl
261
262 ifneq "$(BootingFromHc)" "YES"
263 prelude/PrimOp.lhs prelude/PrimOp.o: $(PRIMOP_BITS)
264 endif
265
266 ifneq "$(BootingFromHc)" "YES"
267 depend :: $(PRIMOP_BITS)
268 endif
269
270 primop-data-decl.hs-incl: prelude/primops.txt
271         $(GENPOC) --data-decl          < $< > $@
272 primop-tag.hs-incl: prelude/primops.txt
273         $(GENPOC) --primop-tag         < $< > $@
274 primop-list.hs-incl: prelude/primops.txt
275         $(GENPOC) --primop-list        < $< > $@
276 primop-has-side-effects.hs-incl: prelude/primops.txt
277         $(GENPOC) --has-side-effects   < $< > $@
278 primop-out-of-line.hs-incl: prelude/primops.txt
279         $(GENPOC) --out-of-line        < $< > $@
280 primop-commutable.hs-incl: prelude/primops.txt
281         $(GENPOC) --commutable         < $< > $@
282 primop-needs-wrapper.hs-incl: prelude/primops.txt
283         $(GENPOC) --needs-wrapper      < $< > $@
284 primop-can-fail.hs-incl: prelude/primops.txt
285         $(GENPOC) --can-fail           < $< > $@
286 primop-strictness.hs-incl: prelude/primops.txt
287         $(GENPOC) --strictness         < $< > $@
288 primop-usage.hs-incl: prelude/primops.txt
289         $(GENPOC) --usage              < $< > $@
290 primop-primop-info.hs-incl: prelude/primops.txt
291         $(GENPOC) --primop-primop-info < $< > $@
292
293
294
295 # ----------------------------------------------------------------------------
296 #               Parsers/lexers
297
298 SRC_HAPPY_OPTS += +RTS -K2m -H16m -RTS  $(GHC_HAPPY_OPTS)
299
300 #-----------------------------------------------------------------------------
301 #               Linking
302
303 SRC_LD_OPTS += -no-link-chk 
304
305 # -----------------------------------------------------------------------------
306 # create ghc-inplace, a convenient way to run ghc from the build tree...
307
308 all :: ghc-inplace
309
310 ghc-inplace : $(HS_PROG)
311         @$(RM) $@
312         echo '#!/bin/sh' >>$@
313         echo exec $(FPTOOLS_TOP_ABS_UNIX)/ghc/compiler/$(HS_PROG) -B$(FPTOOLS_TOP_ABS) '"$$@"' >>$@
314         chmod 755 $@
315
316 CLEAN_FILES += ghc-inplace
317
318 #-----------------------------------------------------------------------------
319 #               install
320
321 # We don't want ghc treated as an ordinary executable,
322 # but put it together with the libraries.
323 # Also don't want any interface files intstalled
324
325 INSTALL_LIBEXECS += $(HS_PROG)
326
327 #-----------------------------------------------------------------------------
328 #               clean
329
330 CLEAN_FILES += $(wildcard */*.$(way_)o */*.$(way_)hi)
331 CLEAN_FILES += $(PRIMOP_BITS)
332
333 # Extra tidy, remove the .hc files (if you've got them).
334 MAINTAINER_CLEAN_FILES += $(wildcard */*.hc) \
335         parser/Parser.info rename/ParseIface.info main/ParsePkgConf.info \
336         parser/Parser.hs rename/ParseIface.hs main/ParsePkgConf.hs
337
338 #-----------------------------------------------------------------------------
339 #               Include target-rule boilerplate
340
341 include $(TOP)/mk/target.mk