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