[project @ 2005-01-12 23:52:17 by wolfgang]
[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 "cTARGETPLATFORM       = \"$(TARGETPLATFORM)\"" >> $(CONFIG_HS)
194         @echo "cTARGETOS             = \"$(TargetOS_CPP)\"" >> $(CONFIG_HS)
195         @echo "cTARGETARCH           = \"$(TargetArch_CPP)\"" >> $(CONFIG_HS)
196         @echo "cGhcWithNativeCodeGen = \"$(GhcWithNativeCodeGen)\"" >> $(CONFIG_HS)
197         @echo "cGhcUnregisterised    = \"$(GhcUnregisterised)\"" >> $(CONFIG_HS)
198         @echo "cLeadingUnderscore    = \"$(LeadingUnderscore)\"" >> $(CONFIG_HS)
199         @echo "cRAWCPP_FLAGS         = \"$(RAWCPP_FLAGS)\"" >> $(CONFIG_HS)
200         @echo "cGCC                  = \"$(WhatGccIsCalled)\"" >> $(CONFIG_HS)
201         @echo "cMKDLL                = \"$(BLD_DLL)\"" >> $(CONFIG_HS)
202         @echo "cPROJECT_DIR          = \"$(PROJECT_DIR)\"" >> $(CONFIG_HS)
203         @echo "cGHC_DRIVER_DIR_REL   = \"$(GHC_DRIVER_DIR_REL)\"" >> $(CONFIG_HS)
204         @echo "cGHC_TOUCHY_PGM       = \"$(GHC_TOUCHY_PGM)\"" >> $(CONFIG_HS)
205         @echo "cGHC_TOUCHY_DIR_REL   = \"$(GHC_TOUCHY_DIR_REL)\"" >> $(CONFIG_HS)
206         @echo "cGHC_UNLIT_PGM        = \"$(GHC_UNLIT_PGM)\"" >> $(CONFIG_HS)
207         @echo "cGHC_UNLIT_DIR_REL    = \"$(GHC_UNLIT_DIR_REL)\"" >> $(CONFIG_HS)
208         @echo "cGHC_MANGLER_PGM      = \"$(GHC_MANGLER_PGM)\"" >> $(CONFIG_HS)
209         @echo "cGHC_MANGLER_DIR_REL  = \"$(GHC_MANGLER_DIR_REL)\"" >> $(CONFIG_HS)
210         @echo "cGHC_SPLIT_PGM        = \"$(GHC_SPLIT_PGM)\"" >> $(CONFIG_HS)
211         @echo "cGHC_SPLIT_DIR_REL    = \"$(GHC_SPLIT_DIR_REL)\"" >> $(CONFIG_HS)
212         @echo "cGHC_SYSMAN_PGM       = \"$(GHC_SYSMAN)\"" >> $(CONFIG_HS)
213         @echo "cGHC_SYSMAN_DIR_REL   = \"$(GHC_SYSMAN_DIR)\"" >> $(CONFIG_HS)
214         @echo "cGHC_CP               = \"$(GHC_CP)\"" >> $(CONFIG_HS)
215         @echo "cGHC_PERL             = \"$(GHC_PERL)\"" >> $(CONFIG_HS)
216 ifeq ($(GhcWithIlx),YES)
217         @echo "cILX2IL               = \"$(ILX2IL)\"" >> $(CONFIG_HS)
218         @echo "cILASM                = \"$(ILASM)\"" >> $(CONFIG_HS)
219 endif
220         @echo "cEnableWin32DLLs      = \"$(EnableWin32DLLs)\"" >> $(CONFIG_HS)
221         @echo "cCONTEXT_DIFF         = \"$(CONTEXT_DIFF)\"" >> $(CONFIG_HS)
222         @echo "cUSER_WAY_NAMES       = \"$(USER_WAY_NAMES)\"" >> $(CONFIG_HS)
223         @echo "cUSER_WAY_OPTS        = \"$(USER_WAY_OPTS)\"" >> $(CONFIG_HS)
224         @echo "cDEFAULT_TMPDIR       = \"$(DEFAULT_TMPDIR)\"" >> $(CONFIG_HS)
225         @echo done.
226
227 CLEAN_FILES += $(CONFIG_HS)
228
229 # -----------------------------------------------------------------------------
230 # Set SRCS etc.
231 #
232 # First figure out ALL_DIRS, the source sub-directories
233
234 ALL_DIRS = \
235   utils basicTypes types hsSyn prelude rename typecheck deSugar coreSyn \
236   specialise simplCore stranal stgSyn simplStg codeGen main \
237   profiling parser cprAnalysis compMan ndpFlatten iface cmm
238
239 # Make sure we include Config.hs even if it doesn't exist yet...
240 ALL_SRCS += $(CONFIG_HS)
241
242 # HsGeneric.hs is not used just now
243 EXCLUDED_SRCS += hsSyn/HsGeneric.hs
244
245 ifeq ($(GhcWithNativeCodeGen),YES)
246 ALL_DIRS += nativeGen
247 else
248 SRC_HC_OPTS += -DOMIT_NATIVE_CODEGEN
249 endif
250
251 ifeq ($(GhcWithIlx),YES)
252 ALL_DIRS += ilxGen
253 SRC_HC_OPTS += -DILX
254 endif
255
256 ifeq ($(GhcWithJavaGen),YES)
257 ALL_DIRS += javaGen
258 SRC_HC_OPTS += -DJAVA
259 endif
260
261 ifeq "$(BootingFromHc)" "YES"
262 # HC files are always from a self-booted compiler
263 bootstrapped = YES
264 compiling_with_4xx=NO
265 else
266 ifneq "$(findstring $(stage), 2 3)" ""
267 bootstrapped = YES
268 compiling_with_4xx = NO
269 else
270 bootstrapped = $(shell if (test $(GhcCanonVersion) -ge $(ProjectVersionInt) -a $(GhcPatchLevel) -ge $(ProjectPatchLevel)); then echo YES; else echo NO; fi)
271 compiling_with_4xx = $(shell if (test $(GhcCanonVersion) -lt 500); then echo YES; else echo NO; fi)
272 endif
273 endif
274
275 # -----------------------------------------------------------------------------
276 # Building a compiler with interpreter support
277 #
278 # The interpreter, GHCi interface, and Template Haskell are only
279 # enabled when we are bootstrapping with the same version of GHC, and
280 # the interpreter is supported on this platform.
281
282 ifeq "$(GhcWithInterpreter) $(bootstrapped)" "YES YES"
283
284 # Yes, include the interepreter, readline, and Template Haskell extensions
285 SRC_HC_OPTS += -DGHCI -package template-haskell
286
287 ifneq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
288 SRC_HC_OPTS += -package unix
289 endif
290
291 ALL_DIRS += ghci
292
293 # Enable readline if either:
294 #   - we're building stage 1 and $(GhcHasReadline)="YES"
295 #   - we're building stage 2/3, and we have built the readline package
296 #
297 # But we don't enable readline on Windows, because readline is fairly
298 # broken there.
299 #
300 ifneq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
301 ifeq "$(stage)" "1"
302 ifeq "$(GhcHasReadline)" "YES"
303 SRC_HC_OPTS += -package readline -DUSE_READLINE
304 endif
305 else
306 ifeq "$(GhcLibsWithReadline)" "YES"
307 SRC_HC_OPTS += -package readline -DUSE_READLINE
308 endif
309 endif # stage=1
310 endif # not windows
311
312 else
313
314 # No interpreter, so exclude Template Haskell modules
315 EXCLUDED_SRCS += deSugar/DsMeta.hs typecheck/TcSplice.lhs hsSyn/Convert.lhs
316
317 endif # bootstrapped with interpreter
318
319 ifeq "$(bootstrapped)" "YES"
320 SRC_HC_OPTS += -package Cabal
321 endif
322
323 # -----------------------------------------------
324 # mkdependC stuff
325 #
326 # Big Fudge to get around inherent problem that Makefile setup
327 # has got with 'mkdependC'.
328
329 SRC_MKDEPENDC_OPTS += -D__GLASGOW_HASKELL__=$(ProjectVersionInt)
330
331 # XXX not really correct, hschooks.c actually gets include files like
332 # RtsFlags.c from the installed GHC, but we can't tell mkdependC about that.
333 SRC_MKDEPENDC_OPTS += -I$(GHC_INCLUDE_DIR)
334
335 # -----------------------------------------------------------------------------
336 #               Haskell compilations
337
338 SRC_HC_OPTS += \
339   -cpp -fglasgow-exts -fno-generics -Rghc-timing \
340   -I. -IcodeGen -InativeGen -Iparser
341
342 # Omitted:      -I$(GHC_INCLUDE_DIR)
343 # We should have -I$(GHC_INCLUDE_DIR) in SRC_HC_OPTS, 
344 # to avoid the use of an explicit path in GHC source files
345 #       (include "../includes/config.h"
346 # But alas GHC 4.08 (and others for all I know) uses this very
347 # same include path when compiling the .hc files it generates.
348 # Disaster!  Then the hc file sees the GHC 5.02 (or whatever)
349 # include files.   For the moment we've reverted to using
350 # an explicit path in the .hs sources
351 #
352 # For the benefit of <5.00 compilers, do include GHC_INCLUDE_DIR
353 # when generating dependencies. (=> it gets passed onto mkdependHS,
354 # which needs it).
355 SRC_MKDEPENDHS_OPTS += -I$(GHC_INCLUDE_DIR)
356
357 # When bootstrapped, we don't make use of *any* packages
358 # (except possibly readline if GHCi is enabled, see above)
359 ifneq "$(bootstrapped)" "YES"
360 ifneq "$(mingw32_HOST_OS)" "1"
361 SRC_HC_OPTS += -package concurrent -package posix -package util
362 else
363 SRC_HC_OPTS += -package concurrent -package util
364 endif
365 endif
366
367 SRC_CC_OPTS += -Iparser -I. -O
368 SRC_HC_OPTS += -recomp $(GhcHcOpts) $(GhcStage$(stage)HcOpts)
369 SRC_HC_OPTS += -H16M
370
371 ifeq "$(BootingFromHc)" "YES"
372 SRC_CC_OPTS += -D__GLASGOW_HASKELL__=$(ProjectVersionInt)
373 endif
374
375 #       Special flags for particular modules
376 #       The standard suffix rule for compiling a Haskell file
377 #       adds these flags to the command line
378
379 # There used to be a -no-recomp flag on PrimOp, but why?
380 # It's an expensive module to recompile!
381 prelude/PrimOp_HC_OPTS          = -H80m
382
383 # because the NCG can't handle the 64-bit math in here
384 prelude/PrelRules_HC_OPTS       = -fvia-C
385
386 main/ParsePkgConf_HC_OPTS       += -fno-warn-incomplete-patterns
387 # Use -fvia-C since the NCG can't handle the narrow16Int# (and intToInt16#?)
388 # primops on all platforms.
389 parser/Parser_HC_OPTS           += -fno-warn-incomplete-patterns -fvia-C
390
391 # Careful optimisation of the parser: we don't want to throw everything
392 # at it, because that takes too long and doesn't buy much, but we do want
393 # to inline certain key external functions, so we instruct GHC not to
394 # throw away inlinings as it would normally do in -Onot mode:
395 parser/Parser_HC_OPTS           += -Onot -fno-ignore-interface-pragmas
396
397 ifeq "$(HOSTPLATFORM)" "hppa1.1-hp-hpux9"
398 rename/RnMonad_HC_OPTS          =  -O2 -O2-for-C
399 endif
400
401 utils/Digraph_HC_OPTS           = -fglasgow-exts 
402
403 basicTypes/SrcLoc_HC_OPTS       = -funbox-strict-fields
404
405 ifeq "$(bootstrapped)" "YES"
406 utils/Binary_HC_OPTS            = -funbox-strict-fields
407 endif
408
409 # 4.08.2's NCG can't cope with Binary
410 ifeq "$(compiling_with_4xx)" "YES"
411 utils/Binary_HC_OPTS            += -fvia-C
412 endif
413
414 # ByteCodeItbls uses primops that the NCG doesn't support yet.
415 ghci/ByteCodeItbls_HC_OPTS      += -fvia-C
416 ghci/ByteCodeLink_HC_OPTS       += -fvia-C -monly-3-regs
417
418 # BinIface and Binary take ages to both compile and run if you don's use -O
419 main/BinIface_HC_OPTS           += -O
420 utils/Binary_HC_OPTS            += -O
421 utils/FastMutInt_HC_OPTS        += -O
422
423
424 # CSE interacts badly with top-level IORefs (reportedly in DriverState and
425 # DriverMkDepend), causing some of them to be commoned up.  We have a fix for
426 # this in 5.00+, but earlier versions of the compiler will need CSE turned off.
427 # To be on the safe side, we disable CSE in *all* modules with top-level IORefs.
428 compMan/CompManager_HC_OPTS     = -fno-cse
429 ghci/InteractiveUI_HC_OPTS      = -fno-cse
430 main/CmdLineOpts_HC_OPTS        = -fno-cse
431 main/DriverFlags_HC_OPTS        = -fno-cse
432 main/DriverMkDepend_HC_OPTS     = -fno-cse
433 main/DriverPipeline_HC_OPTS     = -fno-cse
434 main/DriverState_HC_OPTS        = -fno-cse
435 main/DriverUtil_HC_OPTS         = -fno-cse
436 main/Finder_HC_OPTS             = -fno-cse
437 main/SysTools_HC_OPTS           = -fno-cse
438
439 # The #include is vital for the via-C route, else the C
440 # compiler doesn't realise that the stcall foreign imports are indeed
441 # stdcall, and doesn't generate the Foo@8 name for them
442 ifeq "$(HOSTPLATFORM)" "i386-unknown-mingw32"
443 main/SysTools_HC_OPTS           += '-\#include <windows.h>' '-\#include <process.h>'
444 endif
445
446 parser/Lexer_HC_OPTS += -funbox-strict-fields
447
448 # ghc_strlen percolates through so many modules that it is easier to get its
449 # prototype via a global option instead of a myriad of per-file OPTIONS
450 SRC_HC_OPTS += '-\#include "hschooks.h"'
451
452 # ----------------------------------------------------------------------------
453 #               Generate supporting stuff for prelude/PrimOp.lhs 
454 #               from prelude/primops.txt
455
456 GENPOC=$(TOP)/utils/genprimopcode/genprimopcode
457
458 PRIMOP_BITS=primop-data-decl.hs-incl \
459             primop-tag.hs-incl  \
460             primop-list.hs-incl  \
461             primop-has-side-effects.hs-incl  \
462             primop-out-of-line.hs-incl  \
463             primop-commutable.hs-incl  \
464             primop-needs-wrapper.hs-incl  \
465             primop-can-fail.hs-incl  \
466             primop-strictness.hs-incl  \
467             primop-primop-info.hs-incl
468
469 CLEAN_FILES += prelude/primops.txt
470 CLEAN_FILES += $(PRIMOP_BITS)
471
472 SRC_CPP_OPTS += -I$(GHC_INCLUDE_DIR)
473 SRC_CPP_OPTS += ${GhcCppOpts}
474
475 ifneq "$(BootingFromHc)" "YES"
476 prelude/PrimOp.lhs $(odir)/prelude/PrimOp.o: $(PRIMOP_BITS)
477 endif
478
479 ifneq "$(BootingFromHc)" "YES"
480 depend :: $(PRIMOP_BITS)
481 endif
482
483 primop-data-decl.hs-incl: prelude/primops.txt
484         $(GENPOC) --data-decl          < $< > $@
485 primop-tag.hs-incl: prelude/primops.txt
486         $(GENPOC) --primop-tag         < $< > $@
487 primop-list.hs-incl: prelude/primops.txt
488         $(GENPOC) --primop-list        < $< > $@
489 primop-has-side-effects.hs-incl: prelude/primops.txt
490         $(GENPOC) --has-side-effects   < $< > $@
491 primop-out-of-line.hs-incl: prelude/primops.txt
492         $(GENPOC) --out-of-line        < $< > $@
493 primop-commutable.hs-incl: prelude/primops.txt
494         $(GENPOC) --commutable         < $< > $@
495 primop-needs-wrapper.hs-incl: prelude/primops.txt
496         $(GENPOC) --needs-wrapper      < $< > $@
497 primop-can-fail.hs-incl: prelude/primops.txt
498         $(GENPOC) --can-fail           < $< > $@
499 primop-strictness.hs-incl: prelude/primops.txt
500         $(GENPOC) --strictness         < $< > $@
501 primop-primop-info.hs-incl: prelude/primops.txt
502         $(GENPOC) --primop-primop-info < $< > $@
503
504 # Usages aren't used any more; but the generator 
505 # can still generate them if we want them back
506 primop-usage.hs-incl: prelude/primops.txt
507         $(GENPOC) --usage              < $< > $@
508
509
510 #-----------------------------------------------------------------------------
511 #               Linking
512
513 # Include libghccompat in stage1 only.  In stage2 onwards, all these
514 # libraries will be available from the main libraries.
515 ifeq "$(stage)" "1"
516 SRC_HC_OPTS += -i$(GHC_LIB_COMPAT_DIR)
517 SRC_LD_OPTS += -L$(GHC_LIB_COMPAT_DIR) -lghccompat
518
519 ifeq "$(Windows)" "YES"
520 # not very nice, but required for -lghccompat on Windows
521 SRC_LD_OPTS += -lshell32
522 endif
523
524 # This is horrible.  We ought to be able to omit the entire directory
525 # from mkDependHS.
526 SRC_MKDEPENDHS_OPTS += \
527         -optdep--exclude-module=Compat.RawSystem \
528         -optdep--exclude-module=Compat.Directory \
529         -optdep--exclude-module=Distribution.Compat.ReadP \
530         -optdep--exclude-module=Distribution.Extension \
531         -optdep--exclude-module=Distribution.GetOpt \
532         -optdep--exclude-module=Distribution.InstalledPackageInfo \
533         -optdep--exclude-module=Distribution.License \
534         -optdep--exclude-module=Distribution.Package \
535         -optdep--exclude-module=Distribution.ParseUtils \
536         -optdep--exclude-module=Distribution.Setup \
537         -optdep--exclude-module=Distribution.Version \
538         -optdep--exclude-module=System.FilePath
539 endif
540
541 SRC_LD_OPTS += -no-link-chk
542
543 # -----------------------------------------------------------------------------
544 # create ghc-inplace, a convenient way to run ghc from the build tree...
545
546 all :: $(odir)/ghc-inplace ghc-inplace
547
548 $(odir)/ghc-inplace : $(HS_PROG)
549         @$(RM) $@
550         echo '#!/bin/sh' >>$@
551         echo exec $(FPTOOLS_TOP_ABS)/ghc/compiler/$(HS_PROG) '-B$(subst \,\\,$(FPTOOLS_TOP_ABS_PLATFORM))' '"$$@"' >>$@
552         chmod 755 $@
553
554 ghc-inplace : stage1/ghc-inplace
555         $(LN_S) -f $< $@
556
557 CLEAN_FILES += $(odir)/ghc-inplace ghc-inplace
558
559 #-----------------------------------------------------------------------------
560 #               install
561
562 # We don't want ghc treated as an ordinary executable,
563 # but put it together with the libraries.
564 # Also don't want any interface files installed
565
566 DESTDIR = $(INSTALL_LIBRARY_DIR_GHC)
567
568 ifneq "$(HOSTPLATFORM)" "i386-unknown-mingw32"
569 INSTALL_LIBEXECS += $(HS_PROG)
570 else
571 INSTALL_PROGS += $(HS_PROG)
572 endif
573
574 # ----------------------------------------------------------------------------
575 # profiling.
576
577 # rename/RnBinds_HC_OPTS += -auto-all
578 # rename/RnEnv_HC_OPTS += -auto-all
579 # rename/RnExpr_HC_OPTS += -auto-all
580 # rename/RnHiFiles_HC_OPTS += -auto-all
581 # rename/RnHsSyn_HC_OPTS += -auto-all
582 # rename/Rename_HC_OPTS += -auto-all
583 # rename/RnIfaces_HC_OPTS += -auto-all
584 # rename/RnNames_HC_OPTS += -auto-all
585 # rename/RnSource_HC_OPTS += -auto-all
586 # rename/RnTypes_HC_OPTS += -auto-all
587
588 # typecheck/Inst_HC_OPTS += -auto-all
589 # typecheck/TcBinds_HC_OPTS += -auto-all
590 # typecheck/TcClassDcl_HC_OPTS += -auto-all
591 # typecheck/TcDefaults_HC_OPTS += -auto-all
592 # typecheck/TcDeriv_HC_OPTS += -auto-all
593 # typecheck/TcEnv_HC_OPTS += -auto-all
594 # typecheck/TcExpr_HC_OPTS += -auto-all
595 # typecheck/TcForeign_HC_OPTS += -auto-all
596 # typecheck/TcGenDeriv_HC_OPTS += -auto-all
597 # typecheck/TcHsSyn_HC_OPTS += -auto-all
598 # typecheck/TcIfaceSig_HC_OPTS += -auto-all
599 # typecheck/TcInstDcls_HC_OPTS += -auto-all
600 # typecheck/TcMatches_HC_OPTS += -auto-all
601 # typecheck/TcMonoType_HC_OPTS += -auto-all
602 # typecheck/TcMType_HC_OPTS += -auto-all
603 # typecheck/TcPat_HC_OPTS += -auto-all
604 # typecheck/TcRnDriver_HC_OPTS += -auto-all
605 # #typecheck/TcRnMonad_HC_OPTS += -auto-all
606 # #typecheck/TcRnTypes_HC_OPTS += -auto-all
607 # typecheck/TcRules_HC_OPTS += -auto-all
608 # typecheck/TcSimplify_HC_OPTS += -auto-all
609 # typecheck/TcSplice_HC_OPTS += -auto-all
610 # typecheck/TcTyClsDecls_HC_OPTS += -auto-all
611 # typecheck/TcTyDecls_HC_OPTS += -auto-all
612 # typecheck/TcType_HC_OPTS += -auto-all
613 # typecheck/TcUnify_HC_OPTS += -auto-all
614
615 coreSyn/CorePrep_HC_OPTS += -auto-all
616
617 #-----------------------------------------------------------------------------
618 # Building GHC package
619
620 ifeq "$(BuildPackageGHC)" "YES"
621
622 PACKAGE = ghc
623 STANDALONE_PACKAGE = YES
624 PACKAGE_DEPS =
625
626 endif
627
628 #-----------------------------------------------------------------------------
629 #               clean
630
631 MAINTAINER_CLEAN_FILES += parser/Parser.info main/ParsePkgConf.info
632
633 #-----------------------------------------------------------------------------
634 #               Include target-rule boilerplate
635
636 # Don't use the default MKDEPENDHS stuff... we'll do our own, below
637 MKDEPENDHS_SRCS =
638 MKDEPENDC_SRCS =
639
640 # Make doesn't work this out for itself, it seems
641 parser/Parser.y : parser/Parser.y.pp
642 EXTRA_SRCS += parser/Parser.y
643
644
645 #-----------------------------------------------------------------------------
646 #               Source files for tags file generation
647 #
648 # We want to excluded derived sources, because they won't be in the source
649 # tree, which is where we are going to move the TAGS file to.a
650
651 TAGS_HS_SRCS = parser/Parser.y.pp $(filter-out $(DERIVED_SRCS) main/Config.hs parser/Parser.y, $(sort $(SRCS)))
652
653
654 include $(TOP)/mk/target.mk
655
656 # -----------------------------------------------------------------------------
657 # Dependencies
658
659 MKDEPENDHS_HC_OPTS = $(patsubst -i$(odir)/%, -i%, $(HC_OPTS))
660
661 MKDEPENDHS=$(HC)
662
663 # Must do this *after* including target.mk, because $(HS_SRCS) isn't set yet.
664 depend :: $(HS_SRCS) $(C_SRCS)
665         touch .depend-BASE
666 ifneq "$(BootingFromHc)" "YES"
667         $(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)
668 endif
669         $(MKDEPENDC) -f .depend-BASE $(MKDEPENDC_OPTS) $(foreach way,$(WAYS),-s $(way)) -- $(CC_OPTS) -- $(C_SRCS) 
670         $(PERL) -pe 'binmode(stdin); binmode(stdout); s@^(\S*\.o)@stage$(stage)/$$1@g; s@(\S*\.hi)@stage$(stage)/$$1@g' <.depend-BASE >.depend-$(stage)
671 # The binmode stuff tells perl not to add stupid ^M's to the output
672
673 -include .depend-$(stage)