[project @ 2004-08-16 11:19:24 by simonmar]
[ghc-hetmet.git] / ghc / compiler / Makefile
1 # -----------------------------------------------------------------------------
2 # Main ghc/compiler Makefile
3
4 # Targets:
5 #
6 #       all     builds stage1 compiler
7 #
8 #       boot stage=N   generate build dirs and dependencies for stage N.
9 #                      NB. Must be done before 'make stageN'.
10 #                      NB. Cannot 'make boot stage=2' until stage1 has
11 #                          been built (similarly for stage3).
12 #
13 #       stage1  (or stage=1) builds stage1 compiler
14 #       stage2  (or stage=2) builds stage2 compiler
15 #       stage3  (or stage=3) builds stage3 compiler
16 #
17
18 TOP = ..
19
20 # Use GHC for compiling C bits (NB. must be before boilerplate include)
21 #
22 UseGhcForCc = YES
23
24 include $(TOP)/mk/boilerplate.mk
25
26 #-----------------------------------------------------------------------------
27 # Counting source code lines
28
29 USER_SRCS = $(filter-out $(DERIVED_SRCS),$(SRCS))
30 count :
31         ./count_lines $(USER_SRCS)
32
33 #-----------------------------------------------------------------------------
34 # Building ghc different ways (default is just `normal' sequential)
35
36 WAYS=$(GhcCompilerWays)
37
38 # -----------------------------------------------------------------------------
39 # Bootstrapping
40
41 # The stage1/stage2/stage3 business is quite delicate.  Here's how it works:
42
43 #  - the variable $(stage) holds the current stage number.  To build a 
44 #    particular stage, you say 'make stage=N' where N is 1, 2, or 3.
45 #    N defaults to 1.
46 #
47 #  - for stage N, object files and .hi files are placed inside 
48 #    the directory stageN, in subdirectories as per the sources.
49 #
50 #  - .hi-boot files are *linked* into the stageN tree, because in GHC 5.05+
51 #    the .hi-boot file must reside in the same place as the .hi file.
52 #
53 #  - we use explicit -o and -ohi options to direct the output from C & 
54 #    Haskell compilations.
55 #
56 #  - we generate a different .depend file for each build.  They need to be
57 #    different, because each stage might include different files: stage1
58 #    might not include GHCi, for example.  For each stage, a normal .depend
59 #    file is generated, and then post-processed to add the correct stageN/
60 #    prefix to each object and .hi filename.  The resulting .depend file
61 #    is named .depend-$(stage).  See the end of this Makefile for details.
62 #
63 #  - normal implicit rules don't work any more, because they're of the form
64 #
65 #        %.o : %.hs 
66 #
67 #    whereas we really need 
68 #
69 #        stageN/%.o : %.hs
70 #
71 #    so suffix.mk now defines the appropriate suffix rules when
72 #    $(odir) is set to a non-empty value.  Here we set $(odir) to
73 #    stage1, stage2, or stage3.
74 #
75 #  There are other plausible designs that might work, but each has different
76 #  problems:
77 #
78 #  - using -odir and -hidir: GHC <= 4.08 doesn't support -hidir, and
79 #    anyway -odir puts all the objects in one directory (strips off the
80 #    subdirectory part), which eventually forces us to use VPATH to find
81 #    the sources.  I have a really bad feeling about VPATH.
82 #
83 #  - invoke make in the stageN subdirectory.  This probably requires VPATH
84 #    too.
85 #
86 #  - create a link tree.  The problem with requiring link trees is that 
87 #    Windows doesn't support symbolic links.
88
89 boot ::
90         $(MKDIRHIER) stage$(stage)
91         for i in $(ALL_DIRS); do \
92             $(MKDIRHIER) stage$(stage)/$$i; \
93         done
94 # On Windows, we can't use symbolic links for the -hi-boot files
95 # because GHC itself is a Mingw program and does not understand
96 # symbolic links.  So we have to copy the files instead of link them.
97 # That means that if you modify a .hi-boot file in Windows, you
98 # have to to say 'make boot' again.
99 #
100 # PS: 'ln -s foo baz' takes 'foo' relative to the path to 'baz'
101 #     whereas 'cp foo baz' treats the two paths independently.
102 #     Hence the "../.." in the ln command line
103 ifeq "$(HOSTPLATFORM)" "i386-unknown-mingw32"
104         for i in */*hi-boot*; do \
105             cp -u -f $$i stage$(stage)/$$i; \
106         done
107 else
108         for i in */*hi-boot*; do \
109             $(LN_S) -f ../../$$i stage$(stage)/$$i || true ; \
110         done
111 endif
112
113 ifeq "$(stage)" ""
114 stage=1
115 endif
116
117 ifeq "$(stage)" "1"
118 HC=$(GHC)
119 endif
120
121 ifeq "$(stage)" "2"
122 HC=$(GHC_STAGE1)
123 endif
124
125 ifeq "$(stage)" "3"
126 HC=$(GHC_STAGE2)
127 endif
128
129 stage1 ::
130         $(MAKE) stage=1
131
132 stage2 ::
133         $(MAKE) stage=2
134
135 stage3 ::
136         $(MAKE) stage=3
137
138 odir=stage$(stage)
139
140 SRC_HC_OPTS += $(patsubst %, -i$(odir)/%, $(ALL_DIRS))
141
142 HS_OBJS = $(patsubst %, $(odir)/%, $(addsuffix .$(way_)o,$(basename $(HS_SRCS))))
143 C_OBJS = $(patsubst %, $(odir)/%, $(addsuffix .$(way_)o,$(basename $(C_SRCS))))
144
145 CLEAN_FILES += $(odir)/*/*.hi
146
147 ifeq "$(stage)" "1"
148 mostlyclean clean distclean maintainer-clean ::
149         $(MAKE) $@ stage=2
150         $(MAKE) $@ stage=3
151 endif
152
153 # -----------------------------------------------------------------------------
154 #               Set HS_PROG
155
156 # Note: there have been reports of people running up against the ARG_MAX limit
157 # when linking ghc with all its constituent object files. The likely source of 
158 # the problem is that the environment is a bit too big, so a workaround could
159 # be to do `env PATH=$(PATH) make ghc' to minimise the environment. (or the
160 # equivalent of `env' if it doesn't exist locally).
161 #
162 ifneq "$(BuildPackageGHC)" "YES"
163 ifneq "$(way)" "dll"
164 ifneq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
165 HS_PROG=$(odir)/ghc$(_way)-$(ProjectVersion)
166 else
167 HS_PROG=$(odir)/ghc$(_way)
168 endif
169 else
170 HS_PROG=$(odir)/ghc-$(ProjectVersion)
171 endif
172 endif
173
174 # -----------------------------------------------------------------------------
175 # Create compiler configuration
176 #
177 # The 'echo' commands simply spit the values of various make variables
178 # into Config.hs, whence they can be compiled and used by GHC itself
179
180 CONFIG_HS       = main/Config.hs
181 boot :: $(CONFIG_HS)
182
183 $(CONFIG_HS) : $(FPTOOLS_TOP)/mk/config.mk Makefile
184         @$(RM) -f $(CONFIG_HS)
185         @echo "Creating $(CONFIG_HS) ... "
186         @echo "module Config where" >>$(CONFIG_HS)
187         @echo "cProjectName          = \"$(ProjectName)\"" >> $(CONFIG_HS)
188         @echo "cProjectVersion       = \"$(ProjectVersion)\"" >> $(CONFIG_HS)
189         @echo "cProjectVersionInt    = \"$(ProjectVersionInt)\"" >> $(CONFIG_HS)
190         @echo "cProjectPatchLevel    = \"$(ProjectPatchLevel)\"" >> $(CONFIG_HS)
191         @echo "cBooterVersion        = \"$(GhcVersion)\"" >> $(CONFIG_HS)
192         @echo "cHscIfaceFileVersion  = \"$(HscIfaceFileVersion)\"" >> $(CONFIG_HS)
193         @echo "cHOSTPLATFORM         = \"$(HOSTPLATFORM)\"" >> $(CONFIG_HS)
194         @echo "cTARGETPLATFORM       = \"$(TARGETPLATFORM)\"" >> $(CONFIG_HS)
195         @echo "cTARGETOS             = \"$(TargetOS_CPP)\"" >> $(CONFIG_HS)
196         @echo "cTARGETARCH           = \"$(TargetArch_CPP)\"" >> $(CONFIG_HS)
197         @echo "cGhcWithNativeCodeGen = \"$(GhcWithNativeCodeGen)\"" >> $(CONFIG_HS)
198         @echo "cGhcUnregisterised    = \"$(GhcUnregisterised)\"" >> $(CONFIG_HS)
199         @echo "cLeadingUnderscore    = \"$(LeadingUnderscore)\"" >> $(CONFIG_HS)
200         @echo "cRAWCPP_FLAGS         = \"$(RAWCPP_FLAGS)\"" >> $(CONFIG_HS)
201         @echo "cGCC                  = \"$(WhatGccIsCalled)\"" >> $(CONFIG_HS)
202         @echo "cMKDLL                = \"$(BLD_DLL)\"" >> $(CONFIG_HS)
203         @echo "cPROJECT_DIR          = \"$(PROJECT_DIR)\"" >> $(CONFIG_HS)
204         @echo "cGHC_DRIVER_DIR_REL   = \"$(GHC_DRIVER_DIR_REL)\"" >> $(CONFIG_HS)
205         @echo "cGHC_TOUCHY_PGM       = \"$(GHC_TOUCHY_PGM)\"" >> $(CONFIG_HS)
206         @echo "cGHC_TOUCHY_DIR_REL   = \"$(GHC_TOUCHY_DIR_REL)\"" >> $(CONFIG_HS)
207         @echo "cGHC_UNLIT_PGM        = \"$(GHC_UNLIT_PGM)\"" >> $(CONFIG_HS)
208         @echo "cGHC_UNLIT_DIR_REL    = \"$(GHC_UNLIT_DIR_REL)\"" >> $(CONFIG_HS)
209         @echo "cGHC_MANGLER_PGM      = \"$(GHC_MANGLER_PGM)\"" >> $(CONFIG_HS)
210         @echo "cGHC_MANGLER_DIR_REL  = \"$(GHC_MANGLER_DIR_REL)\"" >> $(CONFIG_HS)
211         @echo "cGHC_SPLIT_PGM        = \"$(GHC_SPLIT_PGM)\"" >> $(CONFIG_HS)
212         @echo "cGHC_SPLIT_DIR_REL    = \"$(GHC_SPLIT_DIR_REL)\"" >> $(CONFIG_HS)
213         @echo "cGHC_SYSMAN_PGM       = \"$(GHC_SYSMAN)\"" >> $(CONFIG_HS)
214         @echo "cGHC_SYSMAN_DIR_REL   = \"$(GHC_SYSMAN_DIR)\"" >> $(CONFIG_HS)
215         @echo "cGHC_CP               = \"$(GHC_CP)\"" >> $(CONFIG_HS)
216         @echo "cGHC_PERL             = \"$(GHC_PERL)\"" >> $(CONFIG_HS)
217 ifeq ($(GhcWithIlx),YES)
218         @echo "cILX2IL               = \"$(ILX2IL)\"" >> $(CONFIG_HS)
219         @echo "cILASM                = \"$(ILASM)\"" >> $(CONFIG_HS)
220 endif
221         @echo "cEnableWin32DLLs      = \"$(EnableWin32DLLs)\"" >> $(CONFIG_HS)
222         @echo "cCONTEXT_DIFF         = \"$(CONTEXT_DIFF)\"" >> $(CONFIG_HS)
223         @echo "cUSER_WAY_NAMES       = \"$(USER_WAY_NAMES)\"" >> $(CONFIG_HS)
224         @echo "cUSER_WAY_OPTS        = \"$(USER_WAY_OPTS)\"" >> $(CONFIG_HS)
225         @echo "cDEFAULT_TMPDIR       = \"$(DEFAULT_TMPDIR)\"" >> $(CONFIG_HS)
226         @echo done.
227
228 CLEAN_FILES += $(CONFIG_HS)
229
230 # -----------------------------------------------------------------------------
231 # Set SRCS etc.
232 #
233 # First figure out ALL_DIRS, the source sub-directories
234
235 ALL_DIRS = \
236   utils basicTypes types hsSyn prelude rename typecheck deSugar coreSyn \
237   specialise simplCore stranal stgSyn simplStg codeGen main \
238   profiling parser cprAnalysis compMan ndpFlatten cbits iface cmm
239
240 # Make sure we include Config.hs even if it doesn't exist yet...
241 ALL_SRCS += $(CONFIG_HS)
242
243 # HsGeneric.hs is not used just now
244 EXCLUDED_SRCS += hsSyn/HsGeneric.hs
245
246 ifeq ($(GhcWithNativeCodeGen),YES)
247 ALL_DIRS += nativeGen
248 else
249 SRC_HC_OPTS += -DOMIT_NATIVE_CODEGEN
250 endif
251
252 ifeq ($(GhcWithIlx),YES)
253 ALL_DIRS += ilxGen
254 SRC_HC_OPTS += -DILX
255 endif
256
257 ifeq ($(GhcWithJavaGen),YES)
258 ALL_DIRS += javaGen
259 SRC_HC_OPTS += -DJAVA
260 endif
261
262 ifeq "$(BootingFromHc)" "YES"
263 # HC files are always from a self-booted compiler
264 bootstrapped = YES
265 compiling_with_4xx=NO
266 else
267 ifneq "$(findstring $(stage), 2 3)" ""
268 bootstrapped = YES
269 compiling_with_4xx = NO
270 else
271 bootstrapped = $(shell if (test $(GhcCanonVersion) -ge $(ProjectVersionInt) -a $(GhcPatchLevel) -ge $(ProjectPatchLevel)); then echo YES; else echo NO; fi)
272 compiling_with_4xx = $(shell if (test $(GhcCanonVersion) -lt 500); then echo YES; else echo NO; fi)
273 endif
274 endif
275
276 # Only include GHCi if we're bootstrapping with at least version 411
277 ifeq "$(GhcWithInterpreter) $(bootstrapped)" "YES YES"
278 # Yes, include the interpreter, readline, and Template Haskell extensions
279 SRC_HC_OPTS += -DGHCI -package template-haskell
280 ifneq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
281 SRC_HC_OPTS += -package unix
282 ifeq "$(GhcLibsWithReadline)" "YES"
283 SRC_HC_OPTS += -package readline 
284 endif
285 endif
286 ALL_DIRS += ghci
287 else
288 # No interpreter, so exclude Template Haskell modules
289 EXCLUDED_SRCS += deSugar/DsMeta.hs typecheck/TcSplice.lhs hsSyn/Convert.lhs
290 endif 
291
292 # -----------------------------------------------
293 # mkdependC stuff
294 #
295 # Big Fudge to get around inherent problem that Makefile setup
296 # has got with 'mkdependC'.
297
298 SRC_MKDEPENDC_OPTS += -D__GLASGOW_HASKELL__=$(ProjectVersionInt)
299
300 # XXX not really correct, hschooks.c actually gets include files like
301 # RtsFlags.c from the installed GHC, but we can't tell mkdependC about that.
302 SRC_MKDEPENDC_OPTS += -I$(GHC_INCLUDE_DIR)
303
304 # -----------------------------------------------------------------------------
305 #               Haskell compilations
306
307 SRC_HC_OPTS += \
308   -cpp -fglasgow-exts -fno-generics -Rghc-timing \
309   -I. -IcodeGen -InativeGen -Iparser
310
311 # Omitted:      -I$(GHC_INCLUDE_DIR)
312 # We should have -I$(GHC_INCLUDE_DIR) in SRC_HC_OPTS, 
313 # to avoid the use of an explicit path in GHC source files
314 #       (include "../includes/config.h"
315 # But alas GHC 4.08 (and others for all I know) uses this very
316 # same include path when compiling the .hc files it generates.
317 # Disaster!  Then the hc file sees the GHC 5.02 (or whatever)
318 # include files.   For the moment we've reverted to using
319 # an explicit path in the .hs sources
320 #
321 # For the benefit of <5.00 compilers, do include GHC_INCLUDE_DIR
322 # when generating dependencies. (=> it gets passed onto mkdependHS,
323 # which needs it).
324 SRC_MKDEPENDHS_OPTS += -I$(GHC_INCLUDE_DIR)
325
326 # When bootstrapped, we don't make use of *any* packages
327 # (except possibly readline if GHCi is enabled, see above)
328 ifneq "$(bootstrapped)" "YES"
329 ifneq "$(mingw32_HOST_OS)" "1"
330 SRC_HC_OPTS += -package concurrent -package posix -package util
331 else
332 SRC_HC_OPTS += -package concurrent -package util
333 endif
334 endif
335
336 SRC_CC_OPTS += -Iparser -I. -O
337 SRC_HC_OPTS += -recomp $(GhcHcOpts) $(GhcStage$(stage)HcOpts)
338 SRC_HC_OPTS += -H16M
339
340 ifeq "$(BootingFromHc)" "YES"
341 SRC_CC_OPTS += -D__GLASGOW_HASKELL__=$(ProjectVersionInt)
342 endif
343
344 #       Special flags for particular modules
345 #       The standard suffix rule for compiling a Haskell file
346 #       adds these flags to the command line
347
348 # There used to be a -no-recomp flag on PrimOp, but why?
349 # It's an expensive module to recompile!
350 prelude/PrimOp_HC_OPTS          = -H80m
351
352 # because the NCG can't handle the 64-bit math in here
353 prelude/PrelRules_HC_OPTS       = -fvia-C
354
355 main/ParsePkgConf_HC_OPTS       += -fno-warn-incomplete-patterns
356 # Use -fvia-C since the NCG can't handle the narrow16Int# (and intToInt16#?)
357 # primops on all platforms.
358 parser/Parser_HC_OPTS           += -fno-warn-incomplete-patterns -fvia-C
359
360 # Careful optimisation of the parser: we don't want to throw everything
361 # at it, because that takes too long and doesn't buy much, but we do want
362 # to inline certain key external functions, so we instruct GHC not to
363 # throw away inlinings as it would normally do in -Onot mode:
364 parser/Parser_HC_OPTS           += -Onot -fno-ignore-interface-pragmas
365
366 ifeq "$(HOSTPLATFORM)" "hppa1.1-hp-hpux9"
367 rename/RnMonad_HC_OPTS          =  -O2 -O2-for-C
368 endif
369
370 utils/Digraph_HC_OPTS           = -fglasgow-exts 
371
372 basicTypes/SrcLoc_HC_OPTS       = -funbox-strict-fields
373
374 ifeq "$(bootstrapped)" "YES"
375 utils/Binary_HC_OPTS            = -funbox-strict-fields
376 endif
377
378 # 4.08.2's NCG can't cope with Binary
379 ifeq "$(compiling_with_4xx)" "YES"
380 utils/Binary_HC_OPTS            += -fvia-C
381 endif
382
383 # ByteCodeItbls uses primops that the NCG doesn't support yet.
384 ghci/ByteCodeItbls_HC_OPTS      += -fvia-C
385 ghci/ByteCodeLink_HC_OPTS       += -fvia-C -monly-3-regs
386
387 # BinIface and Binary take ages to both compile and run if you don's use -O
388 main/BinIface_HC_OPTS           += -O
389 utils/Binary_HC_OPTS            += -O
390 utils/FastMutInt_HC_OPTS        += -O
391
392
393 # CSE interacts badly with top-level IORefs (reportedly in DriverState and
394 # DriverMkDepend), causing some of them to be commoned up.  We have a fix for
395 # this in 5.00+, but earlier versions of the compiler will need CSE turned off.
396 # To be on the safe side, we disable CSE in *all* modules with top-level IORefs.
397 compMan/CompManager_HC_OPTS     = -fno-cse
398 ghci/InteractiveUI_HC_OPTS      = -fno-cse
399 main/CmdLineOpts_HC_OPTS        = -fno-cse
400 main/DriverFlags_HC_OPTS        = -fno-cse
401 main/DriverMkDepend_HC_OPTS     = -fno-cse
402 main/DriverPipeline_HC_OPTS     = -fno-cse
403 main/DriverState_HC_OPTS        = -fno-cse
404 main/DriverUtil_HC_OPTS         = -fno-cse
405 main/Finder_HC_OPTS             = -fno-cse
406 main/SysTools_HC_OPTS           = -fno-cse
407
408 # The #include is vital for the via-C route, else the C
409 # compiler doesn't realise that the stcall foreign imports are indeed
410 # stdcall, and doesn't generate the Foo@8 name for them
411 ifeq "$(HOSTPLATFORM)" "i386-unknown-mingw32"
412 main/SysTools_HC_OPTS           += '-\#include <windows.h>' '-\#include <process.h>'
413 endif
414
415 parser/Lexer_HC_OPTS += -funbox-strict-fields
416
417 # ghc_strlen percolates through so many modules that it is easier to get its
418 # prototype via a global option instead of a myriad of per-file OPTIONS
419 SRC_HC_OPTS += '-\#include "hschooks.h"'
420
421 # ----------------------------------------------------------------------------
422 #               Generate supporting stuff for prelude/PrimOp.lhs 
423 #               from prelude/primops.txt
424
425 GENPOC=$(TOP)/utils/genprimopcode/genprimopcode
426
427 PRIMOP_BITS=primop-data-decl.hs-incl \
428             primop-tag.hs-incl  \
429             primop-list.hs-incl  \
430             primop-has-side-effects.hs-incl  \
431             primop-out-of-line.hs-incl  \
432             primop-commutable.hs-incl  \
433             primop-needs-wrapper.hs-incl  \
434             primop-can-fail.hs-incl  \
435             primop-strictness.hs-incl  \
436             primop-primop-info.hs-incl
437
438 CLEAN_FILES += prelude/primops.txt
439 CLEAN_FILES += $(PRIMOP_BITS)
440
441 SRC_CPP_OPTS += -I$(GHC_INCLUDE_DIR)
442 SRC_CPP_OPTS += ${GhcCppOpts}
443
444 ifneq "$(BootingFromHc)" "YES"
445 prelude/PrimOp.lhs $(odir)/prelude/PrimOp.o: $(PRIMOP_BITS)
446 endif
447
448 ifneq "$(BootingFromHc)" "YES"
449 depend :: $(PRIMOP_BITS)
450 endif
451
452 primop-data-decl.hs-incl: prelude/primops.txt
453         $(GENPOC) --data-decl          < $< > $@
454 primop-tag.hs-incl: prelude/primops.txt
455         $(GENPOC) --primop-tag         < $< > $@
456 primop-list.hs-incl: prelude/primops.txt
457         $(GENPOC) --primop-list        < $< > $@
458 primop-has-side-effects.hs-incl: prelude/primops.txt
459         $(GENPOC) --has-side-effects   < $< > $@
460 primop-out-of-line.hs-incl: prelude/primops.txt
461         $(GENPOC) --out-of-line        < $< > $@
462 primop-commutable.hs-incl: prelude/primops.txt
463         $(GENPOC) --commutable         < $< > $@
464 primop-needs-wrapper.hs-incl: prelude/primops.txt
465         $(GENPOC) --needs-wrapper      < $< > $@
466 primop-can-fail.hs-incl: prelude/primops.txt
467         $(GENPOC) --can-fail           < $< > $@
468 primop-strictness.hs-incl: prelude/primops.txt
469         $(GENPOC) --strictness         < $< > $@
470 primop-primop-info.hs-incl: prelude/primops.txt
471         $(GENPOC) --primop-primop-info < $< > $@
472
473 # Usages aren't used any more; but the generator 
474 # can still generate them if we want them back
475 primop-usage.hs-incl: prelude/primops.txt
476         $(GENPOC) --usage              < $< > $@
477
478
479 #-----------------------------------------------------------------------------
480 #               Linking
481
482 SRC_LD_OPTS += -no-link-chk 
483
484 # -----------------------------------------------------------------------------
485 # create ghc-inplace, a convenient way to run ghc from the build tree...
486
487 all :: $(odir)/ghc-inplace ghc-inplace
488
489 $(odir)/ghc-inplace : $(HS_PROG)
490         @$(RM) $@
491         echo '#!/bin/sh' >>$@
492         echo exec $(FPTOOLS_TOP_ABS)/ghc/compiler/$(HS_PROG) '-B$(subst \,\\,$(FPTOOLS_TOP_ABS_PLATFORM))' '"$$@"' >>$@
493         chmod 755 $@
494
495 ghc-inplace : stage1/ghc-inplace
496         $(LN_S) -f $< $@
497
498 CLEAN_FILES += $(odir)/ghc-inplace ghc-inplace
499
500 #-----------------------------------------------------------------------------
501 #               install
502
503 # We don't want ghc treated as an ordinary executable,
504 # but put it together with the libraries.
505 # Also don't want any interface files installed
506
507 DESTDIR = $(INSTALL_LIBRARY_DIR_GHC)
508
509 ifneq "$(HOSTPLATFORM)" "i386-unknown-mingw32"
510 INSTALL_LIBEXECS += $(HS_PROG)
511 else
512 INSTALL_PROGS += $(HS_PROG)
513 endif
514
515 # ----------------------------------------------------------------------------
516 # profiling.
517
518 # rename/RnBinds_HC_OPTS += -auto-all
519 # rename/RnEnv_HC_OPTS += -auto-all
520 # rename/RnExpr_HC_OPTS += -auto-all
521 # rename/RnHiFiles_HC_OPTS += -auto-all
522 # rename/RnHsSyn_HC_OPTS += -auto-all
523 # rename/Rename_HC_OPTS += -auto-all
524 # rename/RnIfaces_HC_OPTS += -auto-all
525 # rename/RnNames_HC_OPTS += -auto-all
526 # rename/RnSource_HC_OPTS += -auto-all
527 # rename/RnTypes_HC_OPTS += -auto-all
528
529 # typecheck/Inst_HC_OPTS += -auto-all
530 # typecheck/TcBinds_HC_OPTS += -auto-all
531 # typecheck/TcClassDcl_HC_OPTS += -auto-all
532 # typecheck/TcDefaults_HC_OPTS += -auto-all
533 # typecheck/TcDeriv_HC_OPTS += -auto-all
534 # typecheck/TcEnv_HC_OPTS += -auto-all
535 # typecheck/TcExpr_HC_OPTS += -auto-all
536 # typecheck/TcForeign_HC_OPTS += -auto-all
537 # typecheck/TcGenDeriv_HC_OPTS += -auto-all
538 # typecheck/TcHsSyn_HC_OPTS += -auto-all
539 # typecheck/TcIfaceSig_HC_OPTS += -auto-all
540 # typecheck/TcInstDcls_HC_OPTS += -auto-all
541 # typecheck/TcMatches_HC_OPTS += -auto-all
542 # typecheck/TcMonoType_HC_OPTS += -auto-all
543 # typecheck/TcMType_HC_OPTS += -auto-all
544 # typecheck/TcPat_HC_OPTS += -auto-all
545 # typecheck/TcRnDriver_HC_OPTS += -auto-all
546 # #typecheck/TcRnMonad_HC_OPTS += -auto-all
547 # #typecheck/TcRnTypes_HC_OPTS += -auto-all
548 # typecheck/TcRules_HC_OPTS += -auto-all
549 # typecheck/TcSimplify_HC_OPTS += -auto-all
550 # typecheck/TcSplice_HC_OPTS += -auto-all
551 # typecheck/TcTyClsDecls_HC_OPTS += -auto-all
552 # typecheck/TcTyDecls_HC_OPTS += -auto-all
553 # typecheck/TcType_HC_OPTS += -auto-all
554 # typecheck/TcUnify_HC_OPTS += -auto-all
555
556 coreSyn/CorePrep_HC_OPTS += -auto-all
557
558 #-----------------------------------------------------------------------------
559 # Building GHC package
560
561 ifeq "$(BuildPackageGHC)" "YES"
562
563 PACKAGE = ghc
564 STANDALONE_PACKAGE = YES
565 PACKAGE_DEPS = base haskell98
566
567 endif
568
569 #-----------------------------------------------------------------------------
570 #               clean
571
572 MAINTAINER_CLEAN_FILES += parser/Parser.info main/ParsePkgConf.info
573
574 #-----------------------------------------------------------------------------
575 #               Include target-rule boilerplate
576
577 # Don't use the default MKDEPENDHS stuff... we'll do our own, below
578 MKDEPENDHS_SRCS =
579 MKDEPENDC_SRCS =
580
581 # Make doesn't work this out for itself, it seems
582 parser/Parser.y : parser/Parser.y.pp
583 EXTRA_SRCS += parser/Parser.y
584
585 include $(TOP)/mk/target.mk
586
587 # -----------------------------------------------------------------------------
588 # Dependencies
589
590 MKDEPENDHS_HC_OPTS = $(patsubst -i$(odir)/%, -i%, $(HC_OPTS))
591
592 MKDEPENDHS=$(HC)
593
594 # Must do this *after* including target.mk, because $(HS_SRCS) isn't set yet.
595 depend :: $(HS_SRCS) $(C_SRCS)
596         touch .depend-BASE
597 ifneq "$(BootingFromHc)" "YES"
598         $(MKDEPENDHS) -M -optdep-f -optdep.depend-BASE $(foreach way,$(WAYS),-optdep-s -optdep$(way)) $(foreach obj,$(MKDEPENDHS_OBJ_SUFFICES),-osuf $(obj)) $(MKDEPENDHS_OPTS) $(filter-out -split-objs, $(MKDEPENDHS_HC_OPTS)) $(HS_SRCS)
599 endif
600         $(MKDEPENDC) -f .depend-BASE $(MKDEPENDC_OPTS) $(foreach way,$(WAYS),-s $(way)) -- $(CC_OPTS) -- $(C_SRCS) 
601         $(PERL) -pe 'binmode(stdin); binmode(stdout); s@^(\S*\.o)@stage$(stage)/$$1@g; s@(\S*\.hi)@stage$(stage)/$$1@g' <.depend-BASE >.depend-$(stage)
602 # The binmode stuff tells perl not to add stupid ^M's to the output
603
604 -include .depend-$(stage)