Fix bug in SCRIPT_SHELL patch (| should be ||)
[ghc-hetmet.git] / compiler / Makefile
1 # -----------------------------------------------------------------------------
2 # Main 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 ifeq "$(stage)" ""
90 stage=1
91 endif
92
93 .DUMMY: stage_dir
94 stage_dirs :
95         $(MKDIRHIER) stage$(stage)
96         for i in $(ALL_DIRS); do \
97             $(MKDIRHIER) stage$(stage)/$$i; \
98         done
99
100 ifeq "$(stage) $(ghc_ge_603)" "1 YES"
101 UsingHsBoot = YES
102 else
103 ifneq "$(findstring $(stage), 2 3)" ""
104 UsingHsBoot = YES
105 else
106 UsingHsBoot = NO
107 endif
108 endif
109
110 boot :: stage_dirs
111 # On Windows, we can't use symbolic links for the -hi-boot files
112 # because GHC itself is a Mingw program and does not understand
113 # symbolic links.  So we have to copy the files instead of link them.
114 # That means that if you modify a .hi-boot file in Windows, you
115 # have to to say 'make boot' again.
116 #
117 # PS: 'ln -s foo baz' takes 'foo' relative to the path to 'baz'
118 #     whereas 'cp foo baz' treats the two paths independently.
119 #     Hence the "../.." in the ln command line
120 ifeq "$(UsingHsBoot)" "NO"
121 ifeq "$(HOSTPLATFORM)" "i386-unknown-mingw32"
122         for i in */*hi-boot*; do \
123             cp -u -f $$i stage$(stage)/$$i; \
124         done
125 else
126         for i in */*hi-boot*; do \
127             ($(RM) -f stage$(stage)/$$i \
128                && $(LN_S) ../../$$i stage$(stage)/$$i) || true ; \
129         done
130 endif
131 endif
132
133 ifeq "$(stage)" "1"
134 HC=$(GHC)
135 endif
136
137 ifeq "$(stage)" "2"
138 HC=$(GHC_STAGE1)
139 endif
140
141 ifeq "$(stage)" "3"
142 HC=$(GHC_STAGE2)
143 endif
144
145 stage1 ::
146         $(MAKE) stage=1
147
148 stage2 ::
149         $(MAKE) stage=2
150
151 stage3 ::
152         $(MAKE) stage=3
153
154 odir=stage$(stage)
155
156 SRC_HC_OPTS += $(patsubst %, -i$(odir)/%, $(ALL_DIRS))
157
158 HS_OBJS = $(patsubst %, $(odir)/%, $(addsuffix .$(way_)o,$(basename $(HS_SRCS))))
159 C_OBJS = $(patsubst %, $(odir)/%, $(addsuffix .$(way_)o,$(basename $(C_SRCS))))
160
161 # Our standard cleaning rules don't know that we're doing our output
162 # into $(odir), so we have to augment CLEAN_FILES appropriateliy.
163
164 CLEAN_FILES += $(odir)/*/*.hi $(odir)/*/*.hi-boot $(odir)/*/*.o-boot
165
166 ifeq "$(UsingHsBoot)" "YES"
167 CLEAN_FILES += $(odir)/*/*.hi-boot $(odir)/*/*.o-boot
168 endif
169
170 ifeq "$(stage)" "1"
171 mostlyclean clean distclean maintainer-clean ::
172         $(MAKE) $@ stage=2
173         $(MAKE) $@ stage=3
174 endif
175
176 # -----------------------------------------------------------------------------
177 #               Set HS_PROG
178
179 # Note: there have been reports of people running up against the ARG_MAX limit
180 # when linking ghc with all its constituent object files. The likely source of 
181 # the problem is that the environment is a bit too big, so a workaround could
182 # be to do `env PATH=$(PATH) make ghc' to minimise the environment. (or the
183 # equivalent of `env' if it doesn't exist locally).
184 #
185 ifneq "$(way)" "dll"
186 ifneq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
187 GHC_PROG=$(odir)/ghc$(_way)-$(ProjectVersion)
188 else
189 GHC_PROG=$(odir)/ghc$(_way)
190 endif
191 else
192 GHC_PROG=$(odir)/ghc-$(ProjectVersion)
193 endif
194
195 ifneq "$(stage)" "2"
196 HS_PROG = $(GHC_PROG)
197 endif
198
199 # -----------------------------------------------------------------------------
200 # Create compiler configuration
201 #
202 # The 'echo' commands simply spit the values of various make variables
203 # into Config.hs, whence they can be compiled and used by GHC itself
204
205 CONFIG_HS       = main/Config.hs
206 boot :: $(CONFIG_HS)
207
208 $(CONFIG_HS) : $(FPTOOLS_TOP)/mk/config.mk Makefile
209         @$(RM) -f $(CONFIG_HS)
210         @echo "Creating $(CONFIG_HS) ... "
211         @echo "module Config where" >>$(CONFIG_HS)
212         @echo "cProjectName          = \"$(ProjectName)\"" >> $(CONFIG_HS)
213         @echo "cProjectVersion       = \"$(ProjectVersion)\"" >> $(CONFIG_HS)
214         @echo "cProjectVersionInt    = \"$(ProjectVersionInt)\"" >> $(CONFIG_HS)
215         @echo "cProjectPatchLevel    = \"$(ProjectPatchLevel)\"" >> $(CONFIG_HS)
216         @echo "cBooterVersion        = \"$(GhcVersion)\"" >> $(CONFIG_HS)
217         @echo "cHscIfaceFileVersion  = \"$(HscIfaceFileVersion)\"" >> $(CONFIG_HS)
218         @echo "cGhcWithNativeCodeGen = \"$(GhcWithNativeCodeGen)\"" >> $(CONFIG_HS)
219         @echo "cGhcUnregisterised    = \"$(GhcUnregisterised)\"" >> $(CONFIG_HS)
220         @echo "cLeadingUnderscore    = \"$(LeadingUnderscore)\"" >> $(CONFIG_HS)
221         @echo "cRAWCPP_FLAGS         = \"$(RAWCPP_FLAGS)\"" >> $(CONFIG_HS)
222         @echo "cGCC                  = \"$(WhatGccIsCalled)\"" >> $(CONFIG_HS)
223         @echo "cMKDLL                = \"$(BLD_DLL)\"" >> $(CONFIG_HS)
224         @echo "cLdIsGNULd            = \"$(LdIsGNULd)\"" >> $(CONFIG_HS)
225         @echo "cLD_X                 = \"$(LD_X)\"" >> $(CONFIG_HS)
226         @echo "cPROJECT_DIR          = \"$(PROJECT_DIR)\"" >> $(CONFIG_HS)
227         @echo "cGHC_DRIVER_DIR_REL   = \"$(GHC_DRIVER_DIR_REL)\"" >> $(CONFIG_HS)
228         @echo "cGHC_TOUCHY_PGM       = \"$(GHC_TOUCHY_PGM)\"" >> $(CONFIG_HS)
229         @echo "cGHC_TOUCHY_DIR_REL   = \"$(GHC_TOUCHY_DIR_REL)\"" >> $(CONFIG_HS)
230         @echo "cGHC_UNLIT_PGM        = \"$(GHC_UNLIT_PGM)\"" >> $(CONFIG_HS)
231         @echo "cGHC_UNLIT_DIR_REL    = \"$(GHC_UNLIT_DIR_REL)\"" >> $(CONFIG_HS)
232         @echo "cGHC_MANGLER_PGM      = \"$(GHC_MANGLER_PGM)\"" >> $(CONFIG_HS)
233         @echo "cGHC_MANGLER_DIR_REL  = \"$(GHC_MANGLER_DIR_REL)\"" >> $(CONFIG_HS)
234         @echo "cGHC_SPLIT_PGM        = \"$(GHC_SPLIT_PGM)\"" >> $(CONFIG_HS)
235         @echo "cGHC_SPLIT_DIR_REL    = \"$(GHC_SPLIT_DIR_REL)\"" >> $(CONFIG_HS)
236         @echo "cGHC_SYSMAN_PGM       = \"$(GHC_SYSMAN)\"" >> $(CONFIG_HS)
237         @echo "cGHC_SYSMAN_DIR_REL   = \"$(GHC_SYSMAN_DIR)\"" >> $(CONFIG_HS)
238         @echo "cGHC_CP               = \"$(GHC_CP)\"" >> $(CONFIG_HS)
239         @echo "cGHC_PERL             = \"$(GHC_PERL)\"" >> $(CONFIG_HS)
240 ifeq ($(GhcWithIlx),YES)
241         @echo "cILX2IL               = \"$(ILX2IL)\"" >> $(CONFIG_HS)
242         @echo "cILASM                = \"$(ILASM)\"" >> $(CONFIG_HS)
243 endif
244         @echo "cEnableWin32DLLs      = \"$(EnableWin32DLLs)\"" >> $(CONFIG_HS)
245         @echo "cCONTEXT_DIFF         = \"$(CONTEXT_DIFF)\"" >> $(CONFIG_HS)
246         @echo "cUSER_WAY_NAMES       = \"$(USER_WAY_NAMES)\"" >> $(CONFIG_HS)
247         @echo "cUSER_WAY_OPTS        = \"$(USER_WAY_OPTS)\"" >> $(CONFIG_HS)
248         @echo "cDEFAULT_TMPDIR       = \"$(DEFAULT_TMPDIR)\"" >> $(CONFIG_HS)
249         @echo done.
250
251 CLEAN_FILES += $(CONFIG_HS)
252
253 # -----------------------------------------------------------------------------
254 # Create platform includes
255
256 # Here we generate a little header file containing CPP symbols that GHC
257 # uses to determine which platform it is building on/for.  The platforms
258 # can differ between stage1 and stage2 if we're cross-compiling, so we
259 # need one of these header files per stage.
260
261 PLATFORM_H = ghc_boot_platform.h
262
263 stage1/$(PLATFORM_H) : stage_dirs $(FPTOOLS_TOP)/mk/config.mk Makefile
264         @echo "Creating $@..."
265         @$(RM) $@
266         @echo "#ifndef __PLATFORM_H__"  >$@
267         @echo "#define __PLATFORM_H__" >>$@
268         @echo >> $@
269         @echo "#define BuildPlatform_NAME  \"$(BUILDPLATFORM)\"" >> $@
270         @echo "#define HostPlatform_NAME   \"$(HOSTPLATFORM)\"" >> $@
271         @echo "#define TargetPlatform_NAME \"$(TARGETPLATFORM)\"" >> $@
272         @echo >> $@
273         @echo "#define $(BuildPlatform_CPP)_BUILD       1" >> $@
274         @echo "#define $(HostPlatform_CPP)_HOST         1" >> $@
275         @echo "#define $(TargetPlatform_CPP)_TARGET     1" >> $@
276         @echo >> $@
277         @echo "#define $(BuildArch_CPP)_BUILD_ARCH      1" >> $@
278         @echo "#define $(HostArch_CPP)_HOST_ARCH        1" >> $@
279         @echo "#define $(TargetArch_CPP)_TARGET_ARCH    1" >> $@
280         @echo "#define BUILD_ARCH \"$(BuildArch_CPP)\"" >> $@
281         @echo "#define HOST_ARCH \"$(HostArch_CPP)\"" >> $@
282         @echo "#define TARGET_ARCH \"$(TargetArch_CPP)\"" >> $@
283         @echo >> $@
284         @echo "#define $(BuildOS_CPP)_BUILD_OS          1" >> $@
285         @echo "#define $(HostOS_CPP)_HOST_OS            1" >> $@
286         @echo "#define $(TargetOS_CPP)_TARGET_OS        1" >> $@  
287         @echo "#define BUILD_OS \"$(BuildOS_CPP)\"" >> $@
288         @echo "#define HOST_OS \"$(HostOS_CPP)\"" >> $@
289         @echo "#define TARGET_OS \"$(TargetOS_CPP)\"" >> $@
290 ifeq "$(HostOS_CPP)" "irix"
291         @echo "#ifndef $(IRIX_MAJOR)_TARGET_OS           " >> $@  
292         @echo "#define $(IRIX_MAJOR)_TARGET_OS          1" >> $@  
293         @echo "#endif                                    " >> $@  
294 endif
295         @echo >> $@
296         @echo "#define $(BuildVendor_CPP)_BUILD_VENDOR  1" >> $@
297         @echo "#define $(HostVendor_CPP)_HOST_VENDOR    1" >> $@
298         @echo "#define $(TargetVendor_CPP)_TARGET_VENDOR  1" >> $@
299         @echo "#define BUILD_VENDOR \"$(BuildVendor_CPP)\"" >> $@
300         @echo "#define HOST_VENDOR \"$(HostVendor_CPP)\"" >> $@
301         @echo "#define TARGET_VENDOR \"$(TargetVendor_CPP)\"" >> $@
302         @echo >> $@
303         @echo "#endif /* __PLATFORM_H__ */"          >> $@
304         @echo "Done."
305
306 # For stage2 and above, the BUILD platform is the HOST of stage1, and
307 # the HOST platform is the TARGET of stage1.  The TARGET remains the same
308 # (stage1 is the cross-compiler, not stage2).
309 stage2/$(PLATFORM_H) : stage_dirs $(FPTOOLS_TOP)/mk/config.mk Makefile
310         @echo "Creating $@..."
311         @$(RM) $@
312         @echo "#ifndef __PLATFORM_H__"  >$@
313         @echo "#define __PLATFORM_H__" >>$@
314         @echo >> $@
315         @echo "#define BuildPlatform_NAME  \"$(HOSTPLATFORM)\"" >> $@
316         @echo "#define HostPlatform_NAME   \"$(TARGETPLATFORM)\"" >> $@
317         @echo "#define TargetPlatform_NAME \"$(TARGETPLATFORM)\"" >> $@
318         @echo >> $@
319         @echo "#define $(HostPlatform_CPP)_BUILD        1" >> $@
320         @echo "#define $(TargetPlatform_CPP)_HOST               1" >> $@
321         @echo "#define $(TargetPlatform_CPP)_TARGET     1" >> $@
322         @echo >> $@
323         @echo "#define $(HostArch_CPP)_BUILD_ARCH       1" >> $@
324         @echo "#define $(TargetArch_CPP)_HOST_ARCH      1" >> $@
325         @echo "#define $(TargetArch_CPP)_TARGET_ARCH    1" >> $@
326         @echo "#define BUILD_ARCH \"$(HostArch_CPP)\"" >> $@
327         @echo "#define HOST_ARCH \"$(TargetArch_CPP)\"" >> $@
328         @echo "#define TARGET_ARCH \"$(TargetArch_CPP)\"" >> $@
329         @echo >> $@
330         @echo "#define $(HostOS_CPP)_BUILD_OS           1" >> $@
331         @echo "#define $(TargetOS_CPP)_HOST_OS          1" >> $@
332         @echo "#define $(TargetOS_CPP)_TARGET_OS        1" >> $@  
333         @echo "#define BUILD_OS \"$(HostOS_CPP)\"" >> $@
334         @echo "#define HOST_OS \"$(TargetOS_CPP)\"" >> $@
335         @echo "#define TARGET_OS \"$(TargetOS_CPP)\"" >> $@
336 ifeq "$(HostOS_CPP)" "irix"
337         @echo "#ifndef $(IRIX_MAJOR)_TARGET_OS           " >> $@  
338         @echo "#define $(IRIX_MAJOR)_TARGET_OS          1" >> $@  
339         @echo "#endif                                    " >> $@  
340 endif
341         @echo >> $@
342         @echo "#define $(HostVendor_CPP)_BUILD_VENDOR   1" >> $@
343         @echo "#define $(TargetVendor_CPP)_HOST_VENDOR  1" >> $@
344         @echo "#define $(TargetVendor_CPP)_TARGET_VENDOR  1" >> $@
345         @echo "#define BUILD_VENDOR \"$(HostVendor_CPP)\"" >> $@
346         @echo "#define HOST_VENDOR \"$(TargetVendor_CPP)\"" >> $@
347         @echo "#define TARGET_VENDOR \"$(TargetVendor_CPP)\"" >> $@
348         @echo >> $@
349         @echo "#endif /* __PLATFORM_H__ */"          >> $@
350         @echo "Done."
351
352 stage3/$(PLATFORM_H) : stage_dirs stage2/$(PLATFORM_H)
353         $(CP) stage2/$(PLATFORM_H) stage3/$(PLATFORM_H)
354
355 STAGE_PLATFORM_H = stage$(stage)/$(PLATFORM_H)
356
357 boot :: $(STAGE_PLATFORM_H)
358
359 SRC_HC_OPTS += -Istage$(stage)
360
361 # -----------------------------------------------------------------------------
362 # Set SRCS etc.
363 #
364 # First figure out ALL_DIRS, the source sub-directories
365
366 ALL_DIRS = \
367   utils basicTypes types hsSyn prelude rename typecheck deSugar coreSyn \
368   specialise simplCore stranal stgSyn simplStg codeGen main \
369   profiling parser cprAnalysis ndpFlatten iface cmm
370
371 # Make sure we include Config.hs even if it doesn't exist yet...
372 ALL_SRCS += $(CONFIG_HS)
373
374 # HsGeneric.hs is not used just now
375 EXCLUDED_SRCS += hsSyn/HsGeneric.hs
376
377 ifeq ($(GhcWithNativeCodeGen),YES)
378 ALL_DIRS += nativeGen
379 else
380 SRC_HC_OPTS += -DOMIT_NATIVE_CODEGEN
381 endif
382
383 ifeq ($(GhcWithIlx),YES)
384 ALL_DIRS += ilxGen
385 SRC_HC_OPTS += -DILX
386 endif
387
388 ifeq ($(GhcWithJavaGen),YES)
389 ALL_DIRS += javaGen
390 SRC_HC_OPTS += -DJAVA
391 endif
392
393 ifeq "$(BootingFromHc)" "YES"
394 # HC files are always from a self-booted compiler
395 bootstrapped = YES
396 else
397 ifneq "$(findstring $(stage), 2 3)" ""
398 bootstrapped = YES
399 else
400 bootstrapped = NO
401 endif
402 endif
403
404 # -----------------------------------------------------------------------------
405 # Building a compiler with interpreter support
406 #
407 # The interpreter, GHCi interface, and Template Haskell are only
408 # enabled when we are bootstrapping with the same version of GHC, and
409 # the interpreter is supported on this platform.
410
411 ifeq "$(GhcWithInterpreter) $(bootstrapped)" "YES YES"
412
413 # Yes, include the interepreter, readline, and Template Haskell extensions
414 SRC_HC_OPTS += -DGHCI -package template-haskell
415 # -DBREAKPOINT causes a loop in stage2
416 # SRC_HC_OPTS += -DGHCI -DBREAKPOINT -package template-haskell
417 PKG_DEPENDS += template-haskell
418
419 # Use threaded RTS with GHCi, so threads don't get blocked at the prompt.
420 SRC_HC_OPTS += -threaded
421
422 ALL_DIRS += ghci
423
424 # If we are going to use dynamic libraries instead of .o files for ghci,
425 # we will need to always retain CAFs in the compiler.
426 # ghci/keepCAFsForGHCi contains a GNU C __attribute__((constructor))
427 # function which sets the keepCAFs flag for the RTS before any Haskell
428 # code is run.
429 ifeq "$(GhcBuildDylibs)" "YES"
430 else
431 EXCLUDED_SRCS += ghci/keepCAFsForGHCi.c
432 endif
433
434 # Enable readline if either:
435 #   - we're building stage 1 and $(GhcHasReadline)="YES"
436 #   - we're building stage 2/3, and we have built the readline package
437 #
438 # But we don't enable readline on Windows, because readline is fairly
439 # broken there.
440 #
441 ifneq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
442 ifeq "$(stage)" "1"
443 ifeq "$(GhcHasReadline)" "YES"
444 SRC_HC_OPTS += -package readline -DUSE_READLINE
445 PKG_DEPENDS += readline
446 endif
447 else
448 -include $(FPTOOLS_TOP)/libraries/readline/config.mk
449 # readline's config.mk sets PACKAGE, which we don't want here
450 PACKAGE=
451 ifeq "$(READLINE_BUILD_PACKAGE)" "yes"
452 SRC_HC_OPTS += -package readline -DUSE_READLINE
453 PKG_DEPENDS += readline
454 endif
455 endif # stage=1
456 endif # not windows
457
458 else
459
460 # No interpreter, so exclude Template Haskell modules
461 EXCLUDED_SRCS += deSugar/DsMeta.hs typecheck/TcSplice.lhs hsSyn/Convert.lhs
462
463 endif # bootstrapped with interpreter
464
465 # -----------------------------------------------
466 # mkdependC stuff
467 #
468 # Big Fudge to get around inherent problem that Makefile setup
469 # has got with 'mkdependC'.
470
471 SRC_MKDEPENDC_OPTS += -D__GLASGOW_HASKELL__=$(ProjectVersionInt)
472
473 # XXX not really correct, hschooks.c actually gets include files like
474 # RtsFlags.c from the installed GHC, but we can't tell mkdependC about that.
475 SRC_MKDEPENDC_OPTS += -I$(GHC_INCLUDE_DIR)
476
477 # -----------------------------------------------------------------------------
478 #               Haskell compilations
479
480 SRC_HC_OPTS += \
481   -cpp -fglasgow-exts -fno-generics -Rghc-timing \
482   -I. -Iparser
483
484 # Omitted:      -I$(GHC_INCLUDE_DIR)
485 # We should have -I$(GHC_INCLUDE_DIR) in SRC_HC_OPTS, 
486 # to avoid the use of an explicit path in GHC source files
487 #       (include "../includes/config.h"
488 # But alas GHC 4.08 (and others for all I know) uses this very
489 # same include path when compiling the .hc files it generates.
490 # Disaster!  Then the hc file sees the GHC 5.02 (or whatever)
491 # include files.   For the moment we've reverted to using
492 # an explicit path in the .hs sources
493 #
494 # For the benefit of <5.00 compilers, do include GHC_INCLUDE_DIR
495 # when generating dependencies. (=> it gets passed onto mkdependHS,
496 # which needs it).
497 SRC_MKDEPENDHS_OPTS += -I$(GHC_INCLUDE_DIR)
498
499 # We need System.Posix (or Posix when ghc < 6.2)
500 ifeq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
501 ifeq "$(bootstrapped)" "YES"
502 SRC_HC_OPTS += -package Win32
503 PKG_DEPENDS += Win32
504 endif
505 else
506 ifeq "$(bootstrapped) $(ghc_ge_601)" "NO NO"
507 SRC_HC_OPTS += -package posix
508 else
509 SRC_HC_OPTS += -package unix
510 PKG_DEPENDS += unix
511 endif
512 endif
513
514 # We use the Cabal package in stages 2/3 only; in stage 1 we're using
515 # the libcompat library which provides the Cabal modules.
516 ifneq "$(stage)" "1"
517 SRC_HC_OPTS += -package Cabal
518 PKG_DEPENDS += Cabal
519 endif
520
521 # We use Text.Regex which is in regex-compat with GHC 6.6+
522 ifeq "$(bootstrapped)" "YES"
523 SRC_HC_OPTS += -package regex-compat
524 PKG_DEPENDS += regex-compat
525 else
526 ifeq "$(ghc_ge_605)" "YES"
527 SRC_HC_OPTS += -package regex-compat
528 endif
529 endif
530
531 ifeq "$(ghc_ge_603)" "YES"
532 # Ignore lang, to avoid potential clash with the Generics module if
533 # lang happens to be a dependency of some exposed package in the local
534 # GHC installation (eg. wxHaskell did this around 6.4).
535 SRC_HC_OPTS += -ignore-package lang
536 endif
537
538 SRC_CC_OPTS += -Iparser -I. -O
539 SRC_HC_OPTS += -recomp $(GhcHcOpts) $(GhcStage$(stage)HcOpts)
540 SRC_HC_OPTS += -H16M
541
542 ifeq "$(BootingFromHc)" "YES"
543 SRC_CC_OPTS += -D__GLASGOW_HASKELL__=$(ProjectVersionInt)
544 endif
545
546 #       Special flags for particular modules
547 #       The standard suffix rule for compiling a Haskell file
548 #       adds these flags to the command line
549
550 # There used to be a -no-recomp flag on PrimOp, but why?
551 # It's an expensive module to recompile!
552 prelude/PrimOp_HC_OPTS          = -H80m
553
554
555 main/ParsePkgConf_HC_OPTS       += -fno-warn-incomplete-patterns
556 parser/Parser_HC_OPTS           += -fno-warn-incomplete-patterns
557
558 ifeq "$(ghc_ge_603)" "NO"
559 # Use -fvia-C since the NCG can't handle the narrow16Int# (and intToInt16#?)
560 # primops on all platforms.
561 parser/Parser_HC_OPTS           += -fvia-C
562 # because the NCG can't handle the 64-bit math in here
563 prelude/PrelRules_HC_OPTS       += -fvia-C
564 # ByteCodeItbls uses primops that the NCG doesn't support.
565 ghci/ByteCodeItbls_HC_OPTS      += -fvia-C
566 ghci/ByteCodeLink_HC_OPTS       += -fvia-C -monly-3-regs
567 endif
568
569 # Careful optimisation of the parser: we don't want to throw everything
570 # at it, because that takes too long and doesn't buy much, but we do want
571 # to inline certain key external functions, so we instruct GHC not to
572 # throw away inlinings as it would normally do in -Onot mode:
573 parser/Parser_HC_OPTS           += -Onot -fno-ignore-interface-pragmas
574
575 ifeq "$(HOSTPLATFORM)" "hppa1.1-hp-hpux9"
576 rename/RnMonad_HC_OPTS          =  -O2 -O2-for-C
577 endif
578
579 utils/Digraph_HC_OPTS           = -fglasgow-exts 
580
581 basicTypes/SrcLoc_HC_OPTS       = -funbox-strict-fields
582
583 # We always optimise some low-level modules, otherwise performance of
584 # a non-optimised compiler is severely affected.
585 main/BinIface_HC_OPTS           += -O
586 utils/Binary_HC_OPTS            += -O -funbox-strict-fields
587 utils/FastMutInt_HC_OPTS        += -O
588 utils/Encoding_HC_OPTS          += -O
589 utils/StringBuffer_HC_OPTS      += -O -funbox-strict-fields
590 utils/FastString_HC_OPTS        += -O -funbox-strict-fields
591
592 # ---- Profiling ----
593 #simplCore/Simplify_HC_OPTS = -auto-all
594 #simplCore/SimplEnv_HC_OPTS = -auto-all
595 #simplCore/SimplUtils_HC_OPTS = -auto-all
596
597 # CSE interacts badly with top-level IORefs (reportedly in DriverState and
598 # DriverMkDepend), causing some of them to be commoned up.  We have a fix for
599 # this in 5.00+, but earlier versions of the compiler will need CSE turned off.
600 # To be on the safe side, we disable CSE in *all* modules with top-level IORefs.
601 ghci/InteractiveUI_HC_OPTS      = -fno-cse
602 main/CmdLineOpts_HC_OPTS        = -fno-cse
603 main/DriverMkDepend_HC_OPTS     = -fno-cse
604 main/DriverPipeline_HC_OPTS     = -fno-cse
605 main/Finder_HC_OPTS             = -fno-cse
606 main/SysTools_HC_OPTS           = -fno-cse
607 main/StaticFlags_HC_OPTS        = -fno-cse
608
609 # The #include is vital for the via-C route, else the C
610 # compiler doesn't realise that the stcall foreign imports are indeed
611 # stdcall, and doesn't generate the Foo@8 name for them
612 ifeq "$(HOSTPLATFORM)" "i386-unknown-mingw32"
613 main/SysTools_HC_OPTS           += '-\#include <windows.h>' '-\#include <process.h>'
614 endif
615
616 parser/Lexer_HC_OPTS += -funbox-strict-fields
617
618 # ghc_strlen percolates through so many modules that it is easier to get its
619 # prototype via a global option instead of a myriad of per-file OPTIONS
620 SRC_HC_OPTS += '-\#include "cutils.h"'
621
622 # ----------------------------------------------------------------------------
623 #               Generate supporting stuff for prelude/PrimOp.lhs 
624 #               from prelude/primops.txt
625
626 PRIMOP_BITS=primop-data-decl.hs-incl \
627             primop-tag.hs-incl  \
628             primop-list.hs-incl  \
629             primop-has-side-effects.hs-incl  \
630             primop-out-of-line.hs-incl  \
631             primop-commutable.hs-incl  \
632             primop-needs-wrapper.hs-incl  \
633             primop-can-fail.hs-incl  \
634             primop-strictness.hs-incl  \
635             primop-primop-info.hs-incl
636
637 CLEAN_FILES += prelude/primops.txt
638 CLEAN_FILES += $(PRIMOP_BITS)
639
640 SRC_CPP_OPTS += -I$(GHC_INCLUDE_DIR)
641 SRC_CPP_OPTS += ${GhcCppOpts}
642
643 ifneq "$(BootingFromHc)" "YES"
644 prelude/PrimOp.lhs $(odir)/prelude/PrimOp.o: $(PRIMOP_BITS)
645 endif
646
647 ifneq "$(BootingFromHc)" "YES"
648 depend :: $(PRIMOP_BITS)
649 endif
650
651 # This is an ugly hack: we need stage1/$(PLATFORM_H) built before we
652 # preprocess primops.txt.pp, but we don't want to just add that
653 # dependency because we don't want $(PLATFORM_H) built during normal
654 # operations, because we don't have have dependencies from the .hs
655 # sources on it, and we don't want those dependencies because that
656 # would cause everything to be rebuilt every time the Makefile
657 # changed.  So here we add the required dependency only when making
658 # boot or depend:
659 ifneq "$(findstring boot, $(MAKECMDGOALS))$(findstring depend, $(MAKECMDGOALS))" ""
660 prelude/primops.txt.pp : stage1/$(PLATFORM_H)
661 endif
662
663 primop-data-decl.hs-incl: prelude/primops.txt
664         $(GENPRIMOP) --data-decl          < $< > $@
665 primop-tag.hs-incl: prelude/primops.txt
666         $(GENPRIMOP) --primop-tag         < $< > $@
667 primop-list.hs-incl: prelude/primops.txt
668         $(GENPRIMOP) --primop-list        < $< > $@
669 primop-has-side-effects.hs-incl: prelude/primops.txt
670         $(GENPRIMOP) --has-side-effects   < $< > $@
671 primop-out-of-line.hs-incl: prelude/primops.txt
672         $(GENPRIMOP) --out-of-line        < $< > $@
673 primop-commutable.hs-incl: prelude/primops.txt
674         $(GENPRIMOP) --commutable         < $< > $@
675 primop-needs-wrapper.hs-incl: prelude/primops.txt
676         $(GENPRIMOP) --needs-wrapper      < $< > $@
677 primop-can-fail.hs-incl: prelude/primops.txt
678         $(GENPRIMOP) --can-fail           < $< > $@
679 primop-strictness.hs-incl: prelude/primops.txt
680         $(GENPRIMOP) --strictness         < $< > $@
681 primop-primop-info.hs-incl: prelude/primops.txt
682         $(GENPRIMOP) --primop-primop-info < $< > $@
683
684 # Usages aren't used any more; but the generator 
685 # can still generate them if we want them back
686 primop-usage.hs-incl: prelude/primops.txt
687         $(GENPRIMOP) --usage              < $< > $@
688
689
690 #-----------------------------------------------------------------------------
691 #               Linking
692
693 # Include libghccompat in stage1 only.  In stage2 onwards, all these
694 # libraries will be available from the main libraries.
695
696 ifeq "$(stage)" "1"
697 include $(GHC_COMPAT_DIR)/compat.mk
698 endif
699
700 SRC_LD_OPTS += -no-link-chk
701
702 # -----------------------------------------------------------------------------
703 # create ghc-inplace, a convenient way to run ghc from the build tree...
704
705 all :: $(odir)/ghc-inplace ghc-inplace
706
707 # MSys notes
708 # Note 1
709 #   I'm exec'ing $(SCRIPT_SHELL), rather than the usual #!/bin/sh, to make
710 #   sure that the right shell is invoked.  If we use /bin/sh, then
711 #   when ghc-inplace is invoked from a Cygwin Python (which is the only Python
712 #   that seems to run the test-suite correctly), we get the Cygwin shell,
713 #   and it in turn interprets the path-names in the second (exec) line
714 #   differently to the MSys shell.  That's bad, because ghc-inplace must
715 #   also work when invoked from MSys shells
716 #
717 #   To figure out what the MSys shell is, we cd to '/bin' and do 'pwd -W'
718 #   On MSys, the -W flag prints out the directory in c:/msys/bin format
719 #   (On other system, -W isn't a pwd flag at all.)
720
721 ifeq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
722 #       MSys (...and cygwin with a mingw toolchain)
723 SCRIPT_SHELL = $(shell cd /bin; pwd -W 2>/dev/null || echo "/bin")/sh
724 else
725 #       Cygwin and Unix
726 SCRIPT_SHELL = /bin/sh
727 endif
728
729 # Note 2
730 # On MSys, we must use the following script for ghc-inplace:
731 #   exec /c/darcs/fc-branch-2/compiler/stage1/ghc -Bc:/darcs/fc-branch-2 "$@"
732 # That is, 
733 #  (a) You *must* use the /c/ form for the first arg to exec.  Using the
734 #      c:/ form makes exec complain that it can't find $pwd/c:/darcs/.../ghc
735 #               The /c/ form is $(FPTOOLS_TOP_ABS)
736 #  (b) You *must* use the c:/ form for the -B argument, else the testsuite
737 #      doesn't work.  I think that's something to do with ghc-inplace being
738 #      invoked by Python
739 #               The c:/ form is $(FPTOOLS_TOP_ABS_PLATFORM)
740
741 $(odir)/ghc-inplace : $(GHC_PROG)
742         @$(RM) $@
743         echo '#!$(SCRIPT_SHELL)' >>$@
744 # Re SCRIPT_SHELL, see note 1 above
745         echo exec  $(GHC_COMPILER_DIR_ABS)/$(GHC_PROG) \
746                 '-B$(subst \,\\,$(FPTOOLS_TOP_ABS_PLATFORM))' '"$$@"' >>$@
747 # Re exec, see note 2 above
748         chmod 755 $@
749
750 ghc-inplace : stage1/ghc-inplace
751         $(RM) -f $@ && $(LN_S) $< $@
752
753 ifeq "$(stage)" "1"
754 CLEAN_FILES += ghc-inplace
755 endif
756
757 CLEAN_FILES += $(odir)/ghc-inplace
758
759 #-----------------------------------------------------------------------------
760 #               install
761
762 # We don't want ghc treated as an ordinary executable,
763 # but put it together with the libraries.
764 # Also don't want any interface files installed
765
766 DESTDIR = $(INSTALL_LIBRARY_DIR_GHC)
767
768 ifneq "$(HOSTPLATFORM)" "i386-unknown-mingw32"
769 INSTALL_LIBEXECS += $(GHC_PROG)
770 else
771 INSTALL_PROGS += $(GHC_PROG)
772 endif
773
774 # ----------------------------------------------------------------------------
775 # profiling.
776
777 # rename/RnBinds_HC_OPTS += -auto-all
778 # rename/RnEnv_HC_OPTS += -auto-all
779 # rename/RnExpr_HC_OPTS += -auto-all
780 # rename/RnHiFiles_HC_OPTS += -auto-all
781 # rename/RnHsSyn_HC_OPTS += -auto-all
782 # rename/Rename_HC_OPTS += -auto-all
783 # rename/RnIfaces_HC_OPTS += -auto-all
784 # rename/RnNames_HC_OPTS += -auto-all
785 # rename/RnSource_HC_OPTS += -auto-all
786 # rename/RnTypes_HC_OPTS += -auto-all
787
788 # typecheck/Inst_HC_OPTS += -auto-all
789 # typecheck/TcBinds_HC_OPTS += -auto-all
790 # typecheck/TcClassDcl_HC_OPTS += -auto-all
791 # typecheck/TcDefaults_HC_OPTS += -auto-all
792 # typecheck/TcDeriv_HC_OPTS += -auto-all
793 # typecheck/TcEnv_HC_OPTS += -auto-all
794 # typecheck/TcExpr_HC_OPTS += -auto-all
795 # typecheck/TcForeign_HC_OPTS += -auto-all
796 # typecheck/TcGenDeriv_HC_OPTS += -auto-all
797 # typecheck/TcHsSyn_HC_OPTS += -auto-all
798 # typecheck/TcIfaceSig_HC_OPTS += -auto-all
799 # typecheck/TcInstDcls_HC_OPTS += -auto-all
800 # typecheck/TcMatches_HC_OPTS += -auto-all
801 # typecheck/TcMonoType_HC_OPTS += -auto-all
802 # typecheck/TcMType_HC_OPTS += -auto-all
803 # typecheck/TcPat_HC_OPTS += -auto-all
804 # typecheck/TcRnDriver_HC_OPTS += -auto-all
805 # #typecheck/TcRnMonad_HC_OPTS += -auto-all
806 # #typecheck/TcRnTypes_HC_OPTS += -auto-all
807 # typecheck/TcRules_HC_OPTS += -auto-all
808 # typecheck/TcSimplify_HC_OPTS += -auto-all
809 # typecheck/TcSplice_HC_OPTS += -auto-all
810 # typecheck/TcTyClsDecls_HC_OPTS += -auto-all
811 # typecheck/TcTyDecls_HC_OPTS += -auto-all
812 # typecheck/TcType_HC_OPTS += -auto-all
813 # typecheck/TcUnify_HC_OPTS += -auto-all
814
815 coreSyn/CorePrep_HC_OPTS += -auto-all
816 # parser/Parser_HC_OPTS += -fasm
817
818 #-----------------------------------------------------------------------------
819 # Building the GHC package
820
821 # The GHC package is made from the stage 2 build.  Fortunately the
822 # package build system framework more or less does the right thing for
823 # us here.
824
825 #               All this section is stage-2 only!
826 ifeq "$(stage)" "2"
827
828 PACKAGE = ghc
829 HIERARCHICAL_LIB = NO
830 VERSION = $(ProjectVersion)
831 PKG_DEPENDS += base haskell98
832 PACKAGE_CPP_OPTS += -DPKG_DEPENDS='$(PKG_DEPENDS)'
833
834 # Omit Main from the library, the client will want to plug their own Main in
835 LIBOBJS = $(filter-out $(odir)/main/Main.o $(odir)/parser/hschooks.o, $(OBJS))
836
837 # disable splitting: it won't really help with GHC, and the specialised
838 # build system for compiler/ isn't set up to handle it.
839 SplitObjs = NO
840
841 # the package build system likes to set WAYS=$(GhcLibWays), but we don't 
842 # really want to build the whole of GHC multiple ways... if you do,
843 # set GhcCompilerWays instead.
844 GhcLibWays = $(GhcCompilerWays)
845
846 # override $(GhcLibHcOpts): we want GhcStage2HcOpts to take precedence
847 GhcLibHcOpts =
848
849 # override default definition of HS_IFACES so we can add $(odir)
850 HS_IFACES   = $(addsuffix .$(way_)hi,$(basename $(HS_OBJS)))
851
852 # Haddock can't handle recursive modules currently, so we disable it for now.
853 NO_HADDOCK_DOCS = YES
854
855 # The stage 2 GHC binary itself is built by  compiling main/Main.hs 
856 # (the same as used in stage 1) against the GHC package.
857 #
858 # This is done by compiling Main.hs separately and linking it with 
859 # -package ghc.  This is done using a separate Makefile, Makefile.ghcbin
860 # Why? See comments in Makefile.ghcbin
861
862 all :: $(GHC_PROG)
863
864 $(GHC_PROG) : libHS$(PACKAGE)$(_way).a main/Main.hs
865         $(MAKE) -f Makefile.ghcbin $(MFLAGS) HS_PROG=$(GHC_PROG) $@
866
867 # Propagate standard targets to Makefile.ghcbin
868 docs runtests $(BOOT_TARGET) TAGS clean distclean mostlyclean maintainer-clean $(INSTALL_TARGET) $(INSTALL_DOCS_TARGET) html chm HxS ps dvi txt::
869         $(MAKE) -f Makefile.ghcbin $(MFLAGS) $@
870 endif
871
872 #-----------------------------------------------------------------------------
873 #               clean
874
875 MAINTAINER_CLEAN_FILES += parser/Parser.info main/ParsePkgConf.info
876
877 #-----------------------------------------------------------------------------
878 #               Include target-rule boilerplate
879
880 # Don't use the default MKDEPENDHS stuff... we'll do our own, below
881 MKDEPENDHS_SRCS =
882 MKDEPENDC_SRCS =
883
884 # Make doesn't work this out for itself, it seems
885 parser/Parser.y : parser/Parser.y.pp
886 EXTRA_SRCS += parser/Parser.y
887
888
889 #-----------------------------------------------------------------------------
890 #               Source files for tags file generation
891 #
892 # We want to excluded derived sources, because they won't be in the source
893 # tree, which is where we are going to move the TAGS file to.a
894
895 TAGS_HS_SRCS = parser/Parser.y.pp $(filter-out $(DERIVED_SRCS) main/Config.hs parser/Parser.y, $(sort $(SRCS)))
896
897
898 include $(TOP)/mk/target.mk
899
900 # -----------------------------------------------------------------------------
901 # Explicit dependencies
902
903 # Some .hs files #include other source files, but since ghc -M doesn't spit out
904 # these dependencies we have to include them manually.
905
906 # We don't add dependencies on HsVersions.h, ghcautoconf.h, or ghc_boot_platform.h,
907 # because then modifying one of these files would force recompilation of everything,
908 # which is probably not what you want.  However, it does mean you have to be
909 # careful to recompile stuff you need if you reconfigure or change HsVersions.h.
910
911 # Aargh, these don't work properly anyway, because GHC's recompilation checker
912 # just reports "compilation NOT required".  Do we have to add -no-recomp for each
913 # of these .hs files?  I haven't done anything about this yet.
914
915 $(odir)/codeGen/Bitmap.$(way_)o         :  ../includes/MachDeps.h
916 $(odir)/codeGen/CgCallConv.$(way_)o     :  ../includes/StgFun.h
917 $(odir)/codeGen/CgProf.$(way_)o         :  ../includes/MachDeps.h
918 $(odir)/codeGen/CgProf.$(way_)o         :  ../includes/Constants.h
919 $(odir)/codeGen/CgProf.$(way_)o         :  ../includes/DerivedConstants.h
920 $(odir)/codeGen/CgTicky.$(way_)o        :  ../includes/DerivedConstants.h
921 $(odir)/codeGen/ClosureInfo.$(way_)o    :  ../includes/MachDeps.h
922 $(odir)/codeGen/SMRep.$(way_)o          :  ../includes/MachDeps.h
923 $(odir)/codeGen/SMRep.$(way_)o          :  ../includes/ClosureTypes.h
924 $(odir)/ghci/ByteCodeAsm.$(way_)o       :  ../includes/Bytecodes.h
925 $(odir)/ghci/ByteCodeFFI.$(way_)o       :  nativeGen/NCG.h
926 $(odir)/ghci/ByteCodeInstr.$(way_)o     :  ../includes/MachDeps.h
927 $(odir)/ghci/ByteCodeItbls.$(way_)o     :  ../includes/ClosureTypes.h
928 $(odir)/ghci/ByteCodeItbls.$(way_)o     :  nativeGen/NCG.h
929 $(odir)/main/Constants.$(way_)o         :  ../includes/MachRegs.h
930 $(odir)/main/Constants.$(way_)o         :  ../includes/Constants.h
931 $(odir)/main/Constants.$(way_)o         :  ../includes/MachDeps.h
932 $(odir)/main/Constants.$(way_)o         :  ../includes/DerivedConstants.h
933 $(odir)/main/Constants.$(way_)o         :  ../includes/GHCConstants.h
934 $(odir)/nativeGen/AsmCodeGen.$(way_)o   :  nativeGen/NCG.h
935 $(odir)/nativeGen/MachCodeGen.$(way_)o  :  nativeGen/NCG.h
936 $(odir)/nativeGen/MachCodeGen.$(way_)o  : ../includes/MachDeps.h
937 $(odir)/nativeGen/MachInstrs.$(way_)o   :  nativeGen/NCG.h
938 $(odir)/nativeGen/MachRegs.$(way_)o     :  nativeGen/NCG.h
939 $(odir)/nativeGen/MachRegs.$(way_)o     :  ../includes/MachRegs.h
940 $(odir)/nativeGen/PositionIndependentCode.$(way_)o :  nativeGen/NCG.h
941 $(odir)/nativeGen/PprMach.$(way_)o      :  nativeGen/NCG.h
942 $(odir)/nativeGen/RegAllocInfo.$(way_)o :  nativeGen/NCG.h
943 $(odir)/typecheck/TcForeign.$(way_)o    :  nativeGen/NCG.h
944 $(odir)/utils/Binary.$(way_)o           :  ../includes/MachDeps.h
945 $(odir)/utils/FastMutInt.$(way_)o       :  ../includes/MachDeps.h
946
947 # -----------------------------------------------------------------------------
948 # Dependencies
949
950 MKDEPENDHS_HC_OPTS = $(patsubst -i$(odir)/%, -i%, $(HC_OPTS))
951
952 MKDEPENDHS=$(HC)
953
954 # Must do this *after* including target.mk, because $(HS_SRCS) isn't set yet.
955 depend :: $(STAGE_PLATFORM_H) $(HS_SRCS) $(C_SRCS)
956         touch .depend-BASE
957 ifneq "$(BootingFromHc)" "YES"
958         $(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)
959 endif
960         $(MKDEPENDC) -f .depend-BASE $(MKDEPENDC_OPTS) $(foreach way,$(WAYS),-s $(way)) -- $(CC_OPTS) -- $(C_SRCS) 
961         $(PERL) -pe 'binmode(stdin); binmode(stdout); s@^(\S*\.o)@stage$(stage)/$$1@g; s@(\S*\.hi)@stage$(stage)/$$1@g; s@^.*/compat.*$$@@g;' <.depend-BASE >.depend-$(stage)
962 # The binmode stuff tells perl not to add stupid ^M's to the output
963 #
964 # The /lib/compat replacement is to workaround a bug in the
965 # -optdep--exclude-module flag in GHC 6.4.  It is not required for any
966 # other version of GHC, but doesn't do any harm.
967
968 -include .depend-$(stage)