Use MD5 checksums for recompilation checking (fixes #1372, #1959)
[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 # We don't want to compile stage1 in multiple ways
25 ifeq "$(findstring $(stage), 2 3)" ""
26 WAYS=
27 endif
28
29 include $(TOP)/mk/boilerplate.mk
30
31 ifeq "$(GhcThreaded)$(GhcProfiled)" "YESYES"
32 $(error Cannot make GHC both threaded and profiled)
33 endif
34
35
36 #-----------------------------------------------------------------------------
37 # Counting source code lines
38
39 USER_SRCS = $(filter-out $(DERIVED_SRCS),$(SRCS))
40 count :
41         ./count_lines $(USER_SRCS)
42
43 # -----------------------------------------------------------------------------
44 # Bootstrapping
45
46 # The stage1/stage2/stage3 business is quite delicate.  Here's how it works:
47
48 #  - the variable $(stage) holds the current stage number.  To build a 
49 #    particular stage, you say 'make stage=N' where N is 1, 2, or 3.
50 #    N defaults to 1.
51 #
52 #  - for stage N, object files and .hi files are placed inside 
53 #    the directory stageN, in subdirectories as per the sources.
54 #
55 #  - .hi-boot files are *linked* into the stageN tree, because in GHC 5.05+
56 #    the .hi-boot file must reside in the same place as the .hi file.
57 #
58 #  - we use explicit -o and -ohi options to direct the output from C & 
59 #    Haskell compilations.
60 #
61 #  - we generate a different .depend file for each build.  They need to be
62 #    different, because each stage might include different files: stage1
63 #    might not include GHCi, for example.  For each stage, a normal .depend
64 #    file is generated, and then post-processed to add the correct stageN/
65 #    prefix to each object and .hi filename.  The resulting .depend file
66 #    is named .depend-$(stage).  See the end of this Makefile for details.
67 #
68 #  - normal implicit rules don't work any more, because they're of the form
69 #
70 #        %.o : %.hs 
71 #
72 #    whereas we really need 
73 #
74 #        stageN/%.o : %.hs
75 #
76 #    so suffix.mk now defines the appropriate suffix rules when
77 #    $(odir) is set to a non-empty value.  Here we set $(odir) to
78 #    stage1, stage2, or stage3.
79 #
80 #  There are other plausible designs that might work, but each has different
81 #  problems:
82 #
83 #  - using -odir and -hidir: GHC <= 4.08 doesn't support -hidir, and
84 #    anyway -odir puts all the objects in one directory (strips off the
85 #    subdirectory part), which eventually forces us to use VPATH to find
86 #    the sources.  I have a really bad feeling about VPATH.
87 #
88 #  - invoke make in the stageN subdirectory.  This probably requires VPATH
89 #    too.
90 #
91 #  - create a link tree.  The problem with requiring link trees is that 
92 #    Windows doesn't support symbolic links.
93
94 ifeq "$(stage)" ""
95 stage=1
96 endif
97
98 .DUMMY: stage_dir
99 stage_dirs :
100         $(MKDIRHIER) stage$(stage)
101         for i in $(ALL_DIRS); do \
102             $(MKDIRHIER) stage$(stage)/$$i; \
103         done
104
105 ifeq "$(stage)" "1"
106 UsingHsBoot = YES
107 else
108 ifneq "$(findstring $(stage), 2 3)" ""
109 UsingHsBoot = YES
110 else
111 UsingHsBoot = NO
112 endif
113 endif
114
115 boot :: stage_dirs
116 # On Windows, we can't use symbolic links for the -hi-boot files
117 # because GHC itself is a Mingw program and does not understand
118 # symbolic links.  So we have to copy the files instead of link them.
119 # That means that if you modify a .hi-boot file in Windows, you
120 # have to to say 'make boot' again.
121 #
122 # PS: 'ln -s foo baz' takes 'foo' relative to the path to 'baz'
123 #     whereas 'cp foo baz' treats the two paths independently.
124 #     Hence the "../.." in the ln command line
125 ifeq "$(UsingHsBoot)" "NO"
126 ifeq "$(HOSTPLATFORM)" "i386-unknown-mingw32"
127         for i in */*hi-boot*; do \
128             cp -u -f $$i stage$(stage)/$$i; \
129         done
130 else
131         for i in */*hi-boot*; do \
132             ($(RM) -f stage$(stage)/$$i \
133                && $(LN_S) ../../$$i stage$(stage)/$$i) || true ; \
134         done
135 endif
136 endif
137
138 ifeq "$(stage)" "1"
139 HC=$(GHC)
140 endif
141
142 ifeq "$(stage)" "2"
143 HC=$(GHC_STAGE1)
144 endif
145
146 ifeq "$(stage)" "3"
147 HC=$(GHC_STAGE2)
148 endif
149
150 stage1 ::
151         $(MAKE) stage=1
152
153 stage2 ::
154         $(MAKE) stage=2
155
156 stage3 ::
157         $(MAKE) stage=3
158
159 odir=stage$(stage)
160
161 SRC_HC_OPTS += $(patsubst %, -i$(odir)/%, $(ALL_DIRS))
162
163 SRC_HC_OPTS += -Wall -fno-warn-name-shadowing
164 # Turn off orphan warnings, but only if the flag exists (i.e. not if we
165 # are building stage 1 and using GHC < 6.3).
166 ifneq "$(stage)" "1 NO"
167 SRC_HC_OPTS += -fno-warn-orphans
168 endif
169
170 HS_OBJS = $(patsubst %, $(odir)/%, $(addsuffix .$(way_)o,$(basename $(HS_SRCS))))
171 C_OBJS = $(patsubst %, $(odir)/%, $(addsuffix .$(way_)o,$(basename $(C_SRCS))))
172
173 # Our standard cleaning rules don't know that we're doing our output
174 # into $(odir), so we have to augment CLEAN_FILES appropriateliy.
175
176 CLEAN_FILES += $(odir)/*/*.$(way_)hi $(odir)/*/*.$(way_)hi-boot $(odir)/*/*.$(way_)o-boot
177
178 ifeq "$(UsingHsBoot)" "YES"
179 CLEAN_FILES += $(odir)/*/*.hi-boot $(odir)/*/*.o-boot
180 endif
181
182 ifeq "$(stage)" "1"
183 mostlyclean clean distclean maintainer-clean ::
184         $(MAKE) $@ stage=2
185         $(MAKE) $@ stage=3
186 endif
187
188 # -----------------------------------------------------------------------------
189 #               Set HS_PROG
190
191 # Note: there have been reports of people running up against the ARG_MAX limit
192 # when linking ghc with all its constituent object files. The likely source of 
193 # the problem is that the environment is a bit too big, so a workaround could
194 # be to do `env PATH=$(PATH) make ghc' to minimise the environment. (or the
195 # equivalent of `env' if it doesn't exist locally).
196 #
197 ifneq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
198 GHC_PROG=$(odir)/ghc$(_way)-$(ProjectVersion)
199 else
200 GHC_PROG=$(odir)/ghc$(_way)
201 endif
202
203 ifeq "$(stage)" "1"
204 HS_PROG = $(GHC_PROG)
205 endif
206
207 # -----------------------------------------------------------------------------
208 # Create compiler configuration
209 #
210 # The 'echo' commands simply spit the values of various make variables
211 # into Config.hs, whence they can be compiled and used by GHC itself
212
213 CONFIG_HS       = main/Config.hs
214 boot :: $(CONFIG_HS)
215
216 $(CONFIG_HS) : $(FPTOOLS_TOP)/mk/config.mk
217         @$(RM) -f $(CONFIG_HS)
218         @echo "Creating $(CONFIG_HS) ... "
219         @echo "module Config where" >>$(CONFIG_HS)
220         @echo "cProjectName          :: String" >> $(CONFIG_HS)
221         @echo "cProjectName          = \"$(ProjectName)\"" >> $(CONFIG_HS)
222         @echo "cProjectVersion       :: String" >> $(CONFIG_HS)
223         @echo "cProjectVersion       = \"$(ProjectVersion)\"" >> $(CONFIG_HS)
224         @echo "cProjectVersionInt    :: String" >> $(CONFIG_HS)
225         @echo "cProjectVersionInt    = \"$(ProjectVersionInt)\"" >> $(CONFIG_HS)
226         @echo "cProjectPatchLevel    :: String" >> $(CONFIG_HS)
227         @echo "cProjectPatchLevel    = \"$(ProjectPatchLevel)\"" >> $(CONFIG_HS)
228         @echo "cBooterVersion        :: String" >> $(CONFIG_HS)
229         @echo "cBooterVersion        = \"$(GhcVersion)\"" >> $(CONFIG_HS)
230         @echo "cStage                :: String" >> $(CONFIG_HS)
231         @echo "cStage                = STAGE" >> $(CONFIG_HS)
232         @echo "cHscIfaceFileVersion  :: String" >> $(CONFIG_HS)
233         @echo "cHscIfaceFileVersion  = \"$(HscIfaceFileVersion)\"" >> $(CONFIG_HS)
234         @echo "cSplitObjs            :: String" >> $(CONFIG_HS)
235         @echo "cSplitObjs            = \"$(SplitObjs)\"" >> $(CONFIG_HS)
236         @echo "cGhcWithInterpreter   :: String" >> $(CONFIG_HS)
237         @echo "cGhcWithInterpreter   = \"$(GhcWithInterpreter)\"" >> $(CONFIG_HS)
238         @echo "cGhcWithNativeCodeGen :: String" >> $(CONFIG_HS)
239         @echo "cGhcWithNativeCodeGen = \"$(GhcWithNativeCodeGen)\"" >> $(CONFIG_HS)
240         @echo "cGhcWithSMP           :: String" >> $(CONFIG_HS)
241         @echo "cGhcWithSMP           = \"$(GhcWithSMP)\"" >> $(CONFIG_HS)
242         @echo "cGhcRTSWays           :: String" >> $(CONFIG_HS)
243         @echo "cGhcRTSWays           = \"$(GhcRTSWays)\"" >> $(CONFIG_HS)
244         @echo "cGhcUnregisterised    :: String" >> $(CONFIG_HS)
245         @echo "cGhcUnregisterised    = \"$(GhcUnregisterised)\"" >> $(CONFIG_HS)
246         @echo "cGhcEnableTablesNextToCode :: String" >> $(CONFIG_HS)
247         @echo "cGhcEnableTablesNextToCode = \"$(GhcEnableTablesNextToCode)\"" >> $(CONFIG_HS)
248         @echo "cLeadingUnderscore    :: String" >> $(CONFIG_HS)
249         @echo "cLeadingUnderscore    = \"$(LeadingUnderscore)\"" >> $(CONFIG_HS)
250         @echo "cRAWCPP_FLAGS         :: String" >> $(CONFIG_HS)
251         @echo "cRAWCPP_FLAGS         = \"$(RAWCPP_FLAGS)\"" >> $(CONFIG_HS)
252         @echo "cGCC                  :: String" >> $(CONFIG_HS)
253         @echo "cGCC                  = \"$(WhatGccIsCalled)\"" >> $(CONFIG_HS)
254         @echo "cMKDLL                :: String" >> $(CONFIG_HS)
255         @echo "cMKDLL                = \"$(BLD_DLL)\"" >> $(CONFIG_HS)
256         @echo "cLdIsGNULd            :: String" >> $(CONFIG_HS)
257         @echo "cLdIsGNULd            = \"$(LdIsGNULd)\"" >> $(CONFIG_HS)
258         @echo "cLD_X                 :: String" >> $(CONFIG_HS)
259         @echo "cLD_X                 = \"$(LD_X)\"" >> $(CONFIG_HS)
260         @echo "cPROJECT_DIR          :: String" >> $(CONFIG_HS)
261         @echo "cPROJECT_DIR          = \"$(PROJECT_DIR)\"" >> $(CONFIG_HS)
262         @echo "cGHC_DRIVER_DIR_REL   :: String" >> $(CONFIG_HS)
263         @echo "cGHC_DRIVER_DIR_REL   = \"$(GHC_DRIVER_DIR_REL)\"" >> $(CONFIG_HS)
264         @echo "cGHC_TOUCHY_PGM       :: String" >> $(CONFIG_HS)
265         @echo "cGHC_TOUCHY_PGM       = \"$(GHC_TOUCHY_PGM)\"" >> $(CONFIG_HS)
266         @echo "cGHC_TOUCHY_DIR_REL   :: String" >> $(CONFIG_HS)
267         @echo "cGHC_TOUCHY_DIR_REL   = \"$(GHC_TOUCHY_DIR_REL)\"" >> $(CONFIG_HS)
268         @echo "cGHC_UNLIT_PGM        :: String" >> $(CONFIG_HS)
269         @echo "cGHC_UNLIT_PGM        = \"$(GHC_UNLIT_PGM)\"" >> $(CONFIG_HS)
270         @echo "cGHC_UNLIT_DIR_REL    :: String" >> $(CONFIG_HS)
271         @echo "cGHC_UNLIT_DIR_REL    = \"$(GHC_UNLIT_DIR_REL)\"" >> $(CONFIG_HS)
272         @echo "cGHC_MANGLER_PGM      :: String" >> $(CONFIG_HS)
273         @echo "cGHC_MANGLER_PGM      = \"$(GHC_MANGLER_PGM)\"" >> $(CONFIG_HS)
274         @echo "cGHC_MANGLER_DIR_REL  :: String" >> $(CONFIG_HS)
275         @echo "cGHC_MANGLER_DIR_REL  = \"$(GHC_MANGLER_DIR_REL)\"" >> $(CONFIG_HS)
276         @echo "cGHC_SPLIT_PGM        :: String" >> $(CONFIG_HS)
277         @echo "cGHC_SPLIT_PGM        = \"$(GHC_SPLIT_PGM)\"" >> $(CONFIG_HS)
278         @echo "cGHC_SPLIT_DIR_REL    :: String" >> $(CONFIG_HS)
279         @echo "cGHC_SPLIT_DIR_REL    = \"$(GHC_SPLIT_DIR_REL)\"" >> $(CONFIG_HS)
280         @echo "cGHC_SYSMAN_PGM       :: String" >> $(CONFIG_HS)
281         @echo "cGHC_SYSMAN_PGM       = \"$(GHC_SYSMAN)\"" >> $(CONFIG_HS)
282         @echo "cGHC_SYSMAN_DIR_REL   :: String" >> $(CONFIG_HS)
283         @echo "cGHC_SYSMAN_DIR_REL   = \"$(GHC_SYSMAN_DIR)\"" >> $(CONFIG_HS)
284         @echo "cGHC_CP               :: String" >> $(CONFIG_HS)
285         @echo "cGHC_CP               = \"$(GHC_CP)\"" >> $(CONFIG_HS)
286         @echo "cGHC_PERL             :: String" >> $(CONFIG_HS)
287         @echo "cGHC_PERL             = \"$(GHC_PERL)\"" >> $(CONFIG_HS)
288 ifeq ($(GhcWithIlx),YES)
289         @echo "cILX2IL               :: String" >> $(CONFIG_HS)
290         @echo "cILX2IL               = \"$(ILX2IL)\"" >> $(CONFIG_HS)
291         @echo "cILASM                :: String" >> $(CONFIG_HS)
292         @echo "cILASM                = \"$(ILASM)\"" >> $(CONFIG_HS)
293 endif
294         @echo "cEnableWin32DLLs      :: String" >> $(CONFIG_HS)
295         @echo "cEnableWin32DLLs      = \"$(EnableWin32DLLs)\"" >> $(CONFIG_HS)
296         @echo "cCONTEXT_DIFF         :: String" >> $(CONFIG_HS)
297         @echo "cCONTEXT_DIFF         = \"$(CONTEXT_DIFF)\"" >> $(CONFIG_HS)
298         @echo "cUSER_WAY_NAMES       :: String" >> $(CONFIG_HS)
299         @echo "cUSER_WAY_NAMES       = \"$(USER_WAY_NAMES)\"" >> $(CONFIG_HS)
300         @echo "cUSER_WAY_OPTS        :: String" >> $(CONFIG_HS)
301         @echo "cUSER_WAY_OPTS        = \"$(USER_WAY_OPTS)\"" >> $(CONFIG_HS)
302         @echo "cDEFAULT_TMPDIR       :: String" >> $(CONFIG_HS)
303         @echo "cDEFAULT_TMPDIR       = \"$(DEFAULT_TMPDIR)\"" >> $(CONFIG_HS)
304         @echo "cRelocatableBuild     :: Bool"                 >> $(CONFIG_HS)
305 ifeq "$(RelocatableBuild)" "YES"
306         @echo "cRelocatableBuild     = True"                  >> $(CONFIG_HS)
307 else
308         @echo "cRelocatableBuild     = False"                 >> $(CONFIG_HS)
309 endif
310         @echo "cLibFFI               :: Bool"                 >> $(CONFIG_HS)
311 ifeq "$(UseLibFFIForAdjustors)" "YES"
312         @echo "cLibFFI               = True"                  >> $(CONFIG_HS)
313 else
314         @echo "cLibFFI               = False"                 >> $(CONFIG_HS)
315 endif
316         @echo done.
317
318 CLEAN_FILES += $(CONFIG_HS)
319
320 # -----------------------------------------------------------------------------
321 # Create platform includes
322
323 # Here we generate a little header file containing CPP symbols that GHC
324 # uses to determine which platform it is building on/for.  The platforms
325 # can differ between stage1 and stage2 if we're cross-compiling, so we
326 # need one of these header files per stage.
327
328 PLATFORM_H = ghc_boot_platform.h
329
330 stage1/$(PLATFORM_H) : stage_dirs $(FPTOOLS_TOP)/mk/config.mk
331         @echo "Creating $@..."
332         @$(RM) $@
333         @echo "#ifndef __PLATFORM_H__"  >$@
334         @echo "#define __PLATFORM_H__" >>$@
335         @echo >> $@
336         @echo "#define BuildPlatform_NAME  \"$(BUILDPLATFORM)\"" >> $@
337         @echo "#define HostPlatform_NAME   \"$(HOSTPLATFORM)\"" >> $@
338         @echo "#define TargetPlatform_NAME \"$(TARGETPLATFORM)\"" >> $@
339         @echo >> $@
340         @echo "#define $(BuildPlatform_CPP)_BUILD       1" >> $@
341         @echo "#define $(HostPlatform_CPP)_HOST         1" >> $@
342         @echo "#define $(TargetPlatform_CPP)_TARGET     1" >> $@
343         @echo >> $@
344         @echo "#define $(BuildArch_CPP)_BUILD_ARCH      1" >> $@
345         @echo "#define $(HostArch_CPP)_HOST_ARCH        1" >> $@
346         @echo "#define $(TargetArch_CPP)_TARGET_ARCH    1" >> $@
347         @echo "#define BUILD_ARCH \"$(BuildArch_CPP)\"" >> $@
348         @echo "#define HOST_ARCH \"$(HostArch_CPP)\"" >> $@
349         @echo "#define TARGET_ARCH \"$(TargetArch_CPP)\"" >> $@
350         @echo >> $@
351         @echo "#define $(BuildOS_CPP)_BUILD_OS          1" >> $@
352         @echo "#define $(HostOS_CPP)_HOST_OS            1" >> $@
353         @echo "#define $(TargetOS_CPP)_TARGET_OS        1" >> $@  
354         @echo "#define BUILD_OS \"$(BuildOS_CPP)\"" >> $@
355         @echo "#define HOST_OS \"$(HostOS_CPP)\"" >> $@
356         @echo "#define TARGET_OS \"$(TargetOS_CPP)\"" >> $@
357 ifeq "$(HostOS_CPP)" "irix"
358         @echo "#ifndef $(IRIX_MAJOR)_TARGET_OS           " >> $@  
359         @echo "#define $(IRIX_MAJOR)_TARGET_OS          1" >> $@  
360         @echo "#endif                                    " >> $@  
361 endif
362         @echo >> $@
363         @echo "#define $(BuildVendor_CPP)_BUILD_VENDOR  1" >> $@
364         @echo "#define $(HostVendor_CPP)_HOST_VENDOR    1" >> $@
365         @echo "#define $(TargetVendor_CPP)_TARGET_VENDOR  1" >> $@
366         @echo "#define BUILD_VENDOR \"$(BuildVendor_CPP)\"" >> $@
367         @echo "#define HOST_VENDOR \"$(HostVendor_CPP)\"" >> $@
368         @echo "#define TARGET_VENDOR \"$(TargetVendor_CPP)\"" >> $@
369         @echo >> $@
370         @echo "#endif /* __PLATFORM_H__ */"          >> $@
371         @echo "Done."
372
373 # For stage2 and above, the BUILD platform is the HOST of stage1, and
374 # the HOST platform is the TARGET of stage1.  The TARGET remains the same
375 # (stage1 is the cross-compiler, not stage2).
376 stage2/$(PLATFORM_H) : stage_dirs $(FPTOOLS_TOP)/mk/config.mk
377         @echo "Creating $@..."
378         @$(RM) $@
379         @echo "#ifndef __PLATFORM_H__"  >$@
380         @echo "#define __PLATFORM_H__" >>$@
381         @echo >> $@
382         @echo "#define BuildPlatform_NAME  \"$(HOSTPLATFORM)\"" >> $@
383         @echo "#define HostPlatform_NAME   \"$(TARGETPLATFORM)\"" >> $@
384         @echo "#define TargetPlatform_NAME \"$(TARGETPLATFORM)\"" >> $@
385         @echo >> $@
386         @echo "#define $(HostPlatform_CPP)_BUILD        1" >> $@
387         @echo "#define $(TargetPlatform_CPP)_HOST               1" >> $@
388         @echo "#define $(TargetPlatform_CPP)_TARGET     1" >> $@
389         @echo >> $@
390         @echo "#define $(HostArch_CPP)_BUILD_ARCH       1" >> $@
391         @echo "#define $(TargetArch_CPP)_HOST_ARCH      1" >> $@
392         @echo "#define $(TargetArch_CPP)_TARGET_ARCH    1" >> $@
393         @echo "#define BUILD_ARCH \"$(HostArch_CPP)\"" >> $@
394         @echo "#define HOST_ARCH \"$(TargetArch_CPP)\"" >> $@
395         @echo "#define TARGET_ARCH \"$(TargetArch_CPP)\"" >> $@
396         @echo >> $@
397         @echo "#define $(HostOS_CPP)_BUILD_OS           1" >> $@
398         @echo "#define $(TargetOS_CPP)_HOST_OS          1" >> $@
399         @echo "#define $(TargetOS_CPP)_TARGET_OS        1" >> $@  
400         @echo "#define BUILD_OS \"$(HostOS_CPP)\"" >> $@
401         @echo "#define HOST_OS \"$(TargetOS_CPP)\"" >> $@
402         @echo "#define TARGET_OS \"$(TargetOS_CPP)\"" >> $@
403 ifeq "$(HostOS_CPP)" "irix"
404         @echo "#ifndef $(IRIX_MAJOR)_TARGET_OS           " >> $@  
405         @echo "#define $(IRIX_MAJOR)_TARGET_OS          1" >> $@  
406         @echo "#endif                                    " >> $@  
407 endif
408         @echo >> $@
409         @echo "#define $(HostVendor_CPP)_BUILD_VENDOR   1" >> $@
410         @echo "#define $(TargetVendor_CPP)_HOST_VENDOR  1" >> $@
411         @echo "#define $(TargetVendor_CPP)_TARGET_VENDOR  1" >> $@
412         @echo "#define BUILD_VENDOR \"$(HostVendor_CPP)\"" >> $@
413         @echo "#define HOST_VENDOR \"$(TargetVendor_CPP)\"" >> $@
414         @echo "#define TARGET_VENDOR \"$(TargetVendor_CPP)\"" >> $@
415         @echo >> $@
416         @echo "#endif /* __PLATFORM_H__ */"          >> $@
417         @echo "Done."
418
419 stage3/$(PLATFORM_H) : stage_dirs stage2/$(PLATFORM_H)
420         $(CP) stage2/$(PLATFORM_H) stage3/$(PLATFORM_H)
421
422 STAGE_PLATFORM_H = stage$(stage)/$(PLATFORM_H)
423
424 boot :: $(STAGE_PLATFORM_H)
425
426 SRC_HC_OPTS += -Istage$(stage)
427
428 # -----------------------------------------------------------------------------
429 # Set SRCS etc.
430 #
431 # First figure out ALL_DIRS, the source sub-directories
432
433 ALL_DIRS = \
434   utils basicTypes types hsSyn prelude rename typecheck deSugar coreSyn \
435   vectorise specialise simplCore stranal stgSyn simplStg codeGen main \
436   profiling parser cprAnalysis iface cmm
437
438 # Make sure we include Config.hs even if it doesn't exist yet...
439 ALL_SRCS += $(CONFIG_HS)
440
441 # HsGeneric.hs is not used just now
442 EXCLUDED_SRCS += hsSyn/HsGeneric.hs
443
444 ifeq ($(GhcWithNativeCodeGen),YES)
445 ALL_DIRS += nativeGen
446 else
447 SRC_HC_OPTS += -DOMIT_NATIVE_CODEGEN
448 endif
449
450 ifeq ($(GhcWithIlx),YES)
451 ALL_DIRS += ilxGen
452 SRC_HC_OPTS += -DILX
453 endif
454
455 ifeq ($(GhcWithJavaGen),YES)
456 ALL_DIRS += javaGen
457 SRC_HC_OPTS += -DJAVA
458 endif
459
460 ifeq "$(BootingFromHc)" "YES"
461 # HC files are always from a self-booted compiler
462 bootstrapped = YES
463 else
464 ifneq "$(findstring $(stage), 2 3)" ""
465 bootstrapped = YES
466 else
467 bootstrapped = NO
468 endif
469 endif
470
471 # Beyond stage 1, honour any Mac OS X depolyment target options.  If we use 
472 # these options in stage 1 we get a linker error if the bootstrap compiler is
473 #  for a more recent OS version
474 ifneq "$(findstring $(stage), 2 3)" ""
475 SRC_CC_OPTS += $(MACOSX_DEPLOYMENT_CC_OPTS)
476 SRC_HC_OPTS += $(addprefix -optc, $(MACOSX_DEPLOYMENT_CC_OPTS))
477 SRC_LD_OPTS += $(addprefix -optl, $(MACOSX_DEPLOYMENT_LD_OPTS))
478 endif
479
480 # -----------------------------------------------------------------------------
481 # Building a compiler with interpreter support
482 #
483 # The interpreter, GHCi interface, Template Haskell and Hpc are only
484 # enabled when we are bootstrapping with the same version of GHC, and
485 # the interpreter is supported on this platform.
486
487 ifeq "$(bootstrapped)" "YES"
488 SRC_HC_OPTS += -package hpc -package bytestring
489 PKG_DEPENDS += hpc bytestring
490 endif
491
492 ifeq "$(GhcWithInterpreter) $(bootstrapped)" "YES YES"
493
494 # Yes, include the interepreter and Template Haskell extensions
495 SRC_HC_OPTS += -DGHCI -package template-haskell
496 PKG_DEPENDS += template-haskell
497
498 # Should GHCI be building info tables in the TABLES_NEXT_TO_CODE style
499 # or not?
500 ifeq "$(GhcEnableTablesNextToCode) $(GhcUnregisterised)" "YES NO"
501 SRC_HC_OPTS += -DGHCI_TABLES_NEXT_TO_CODE
502 endif
503
504 ifeq "$(GhcThreaded)" "YES"
505 # Use threaded RTS with GHCi, so threads don't get blocked at the prompt.
506 SRC_LD_OPTS += -threaded
507 endif
508 ifeq "$(GhcProfiled)" "YES"
509 SRC_LD_OPTS += -prof
510 endif
511 ifeq "$(GhcDebugged)" "YES"
512 SRC_LD_OPTS += -debug
513 endif
514
515 SRC_HC_OPTS     += -I$(FPTOOLS_TOP)/libffi/build/include
516 SRC_HSC2HS_OPTS += -I$(FPTOOLS_TOP)/libffi/build/include
517
518 ALL_DIRS += ghci
519
520 # If we are going to use dynamic libraries instead of .o files for ghci,
521 # we will need to always retain CAFs in the compiler.
522 # ghci/keepCAFsForGHCi contains a GNU C __attribute__((constructor))
523 # function which sets the keepCAFs flag for the RTS before any Haskell
524 # code is run.
525 ifeq "$(GhcBuildDylibs)" "YES"
526 else
527 EXCLUDED_SRCS += ghci/keepCAFsForGHCi.c
528 endif
529
530 # Enable editline if either:
531 #   - we're building stage 1 and $(GhcHasEditline)="YES"
532 #   - we're building stage 2/3, and we have built the editline package
533 #
534 # But we don't enable editline on Windows, as Windows terminals have
535 # editline-like support builtin.
536 #
537 ifneq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
538 ifeq "$(stage)" "1"
539 ifeq "$(GhcHasEditline)" "YES"
540 SRC_HC_OPTS += -package editline -DUSE_EDITLINE
541 PKG_DEPENDS += editline
542 endif
543 else
544 ifeq "$(wildcard $(FPTOOLS_TOP_ABS)/libraries/editline/unbuildable)" ""
545 SRC_HC_OPTS += -package editline -DUSE_EDITLINE
546 PKG_DEPENDS += editline
547 endif
548 endif # stage=1
549 endif # not windows
550
551 else
552
553 # No interpreter, so exclude Template Haskell modules
554 EXCLUDED_SRCS += deSugar/DsMeta.hs typecheck/TcSplice.lhs hsSyn/Convert.lhs
555
556 endif # bootstrapped with interpreter
557
558 # -----------------------------------------------
559 # mkdependC stuff
560 #
561 # Big Fudge to get around inherent problem that Makefile setup
562 # has got with 'mkdependC'.
563
564 SRC_MKDEPENDC_OPTS += -D__GLASGOW_HASKELL__=$(ProjectVersionInt)
565
566 # XXX not really correct, hschooks.c actually gets include files like
567 # RtsFlags.c from the installed GHC, but we can't tell mkdependC about that.
568 SRC_MKDEPENDC_OPTS += -I$(GHC_INCLUDE_DIR)
569
570 # -----------------------------------------------------------------------------
571 #               Haskell compilations
572
573 SRC_HC_OPTS += \
574   -cpp -fglasgow-exts -fno-generics -Rghc-timing \
575   -I. -Iparser -Iutil
576
577 # Omitted:      -I$(GHC_INCLUDE_DIR)
578 # We should have -I$(GHC_INCLUDE_DIR) in SRC_HC_OPTS, 
579 # to avoid the use of an explicit path in GHC source files
580 #       (include "../includes/config.h"
581 # But alas GHC 4.08 (and others for all I know) uses this very
582 # same include path when compiling the .hc files it generates.
583 # Disaster!  Then the hc file sees the GHC 5.02 (or whatever)
584 # include files.   For the moment we've reverted to using
585 # an explicit path in the .hs sources
586 #
587 # For the benefit of <5.00 compilers, do include GHC_INCLUDE_DIR
588 # when generating dependencies. (=> it gets passed onto mkdependHS,
589 # which needs it).
590 SRC_MKDEPENDHS_OPTS += -I$(GHC_INCLUDE_DIR)
591
592 # We need System.Posix (or Posix when ghc < 6.2)
593 ifeq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
594 ifeq "$(bootstrapped)" "YES"
595 SRC_HC_OPTS += -package Win32
596 PKG_DEPENDS += Win32
597 endif
598 else
599 ifeq "$(bootstrapped) $(ghc_ge_601)" "NO NO"
600 SRC_HC_OPTS += -package posix
601 else
602 SRC_HC_OPTS += -package unix
603 PKG_DEPENDS += unix
604 endif
605 endif
606
607 # We use the Cabal package in stages 2/3 only; in stage 1 we're using
608 # the libcompat library which provides the Cabal modules.
609 ifneq "$(stage)" "1"
610 SRC_HC_OPTS += -package Cabal
611 PKG_DEPENDS += Cabal
612 endif
613
614 # Ignore lang, to avoid potential clash with the Generics module if
615 # lang happens to be a dependency of some exposed package in the local
616 # GHC installation (eg. wxHaskell did this around 6.4).
617 SRC_HC_OPTS += -ignore-package lang
618
619 SRC_CC_OPTS += -Iparser -I. -O
620 SRC_HC_OPTS += -recomp $(GhcHcOpts) $(GhcStage$(stage)HcOpts)
621 SRC_HC_OPTS += -H16M
622
623 ifeq "$(BootingFromHc)" "YES"
624 SRC_CC_OPTS += -D__GLASGOW_HASKELL__=$(ProjectVersionInt)
625 endif
626
627 #       Special flags for particular modules
628 #       The standard suffix rule for compiling a Haskell file
629 #       adds these flags to the command line
630
631 # There used to be a -no-recomp flag on PrimOp, but why?
632 # It's an expensive module to recompile!
633 prelude/PrimOp_HC_OPTS          = -H80m
634
635
636 main/ParsePkgConf_HC_OPTS       += -fno-warn-incomplete-patterns
637 parser/Parser_HC_OPTS           += -fno-warn-incomplete-patterns
638
639 # Careful optimisation of the parser: we don't want to throw everything
640 # at it, because that takes too long and doesn't buy much, but we do want
641 # to inline certain key external functions, so we instruct GHC not to
642 # throw away inlinings as it would normally do in -Onot mode:
643 parser/Parser_HC_OPTS           += -Onot -fno-ignore-interface-pragmas
644
645 ifeq "$(HOSTPLATFORM)" "hppa1.1-hp-hpux9"
646 rename/RnMonad_HC_OPTS          =  -O2 -O2-for-C
647 endif
648
649 utils/Digraph_HC_OPTS           = -fglasgow-exts 
650
651 # basicTypes/SrcLoc_HC_OPTS     = -funbox-strict-fields
652
653 # We always optimise some low-level modules, otherwise performance of
654 # a non-optimised compiler is severely affected.
655 main/BinIface_HC_OPTS           += -O
656 utils/Binary_HC_OPTS            += -O -funbox-strict-fields
657 utils/FastMutInt_HC_OPTS        += -O
658 utils/Encoding_HC_OPTS          += -O
659 utils/StringBuffer_HC_OPTS      += -O -funbox-strict-fields
660 utils/FastString_HC_OPTS        += -O -funbox-strict-fields
661
662 # ---- Profiling ----
663 #simplCore/Simplify_HC_OPTS = -auto-all
664 #simplCore/SimplEnv_HC_OPTS = -auto-all
665 #simplCore/SimplUtils_HC_OPTS = -auto-all
666
667 # CSE interacts badly with top-level IORefs (reportedly in DriverState and
668 # DriverMkDepend), causing some of them to be commoned up.  We have a fix for
669 # this in 5.00+, but earlier versions of the compiler will need CSE turned off.
670 # To be on the safe side, we disable CSE in *all* modules with top-level IORefs.
671 ghci/InteractiveUI_HC_OPTS      = -fno-cse
672 main/CmdLineOpts_HC_OPTS        = -fno-cse
673 main/DriverMkDepend_HC_OPTS     = -fno-cse
674 main/DriverPipeline_HC_OPTS     = -fno-cse
675 main/Finder_HC_OPTS             = -fno-cse
676 main/SysTools_HC_OPTS           = -fno-cse
677 main/StaticFlags_HC_OPTS        = -fno-cse
678
679 # The #include is vital for the via-C route, else the C
680 # compiler doesn't realise that the stcall foreign imports are indeed
681 # stdcall, and doesn't generate the Foo@8 name for them
682 ifeq "$(HOSTPLATFORM)" "i386-unknown-mingw32"
683 main/SysTools_HC_OPTS           += '-\#include <windows.h>' '-\#include <process.h>'
684 endif
685
686 parser/Lexer_HC_OPTS += -funbox-strict-fields
687
688 # ghc_strlen percolates through so many modules that it is easier to get its
689 # prototype via a global option instead of a myriad of per-file OPTIONS
690 SRC_HC_OPTS += '-\#include "cutils.h"'
691
692 # ----------------------------------------------------------------------------
693 #               Generate supporting stuff for prelude/PrimOp.lhs 
694 #               from prelude/primops.txt
695
696 PRIMOP_BITS=primop-data-decl.hs-incl \
697             primop-tag.hs-incl  \
698             primop-list.hs-incl  \
699             primop-has-side-effects.hs-incl  \
700             primop-out-of-line.hs-incl  \
701             primop-commutable.hs-incl  \
702             primop-needs-wrapper.hs-incl  \
703             primop-can-fail.hs-incl  \
704             primop-strictness.hs-incl  \
705             primop-primop-info.hs-incl
706
707 CLEAN_FILES += prelude/primops.txt
708 CLEAN_FILES += $(PRIMOP_BITS)
709
710 SRC_CPP_OPTS += -I$(GHC_INCLUDE_DIR)
711 SRC_CPP_OPTS += ${GhcCppOpts}
712
713 ifneq "$(BootingFromHc)" "YES"
714 prelude/PrimOp.lhs $(odir)/prelude/PrimOp.o: $(PRIMOP_BITS)
715 endif
716
717 ifneq "$(BootingFromHc)" "YES"
718 depend :: $(PRIMOP_BITS)
719 endif
720
721 # This is an ugly hack: we need stage1/$(PLATFORM_H) built before we
722 # preprocess primops.txt.pp, but we don't want to just add that
723 # dependency because we don't want $(PLATFORM_H) built during normal
724 # operations, because we don't have have dependencies from the .hs
725 # sources on it, and we don't want those dependencies because that
726 # would cause everything to be rebuilt every time the Makefile
727 # changed.  So here we add the required dependency only when making
728 # boot or depend:
729 ifneq "$(findstring boot, $(MAKECMDGOALS))$(findstring depend, $(MAKECMDGOALS))" ""
730 prelude/primops.txt.pp : stage1/$(PLATFORM_H)
731 endif
732
733 primop-data-decl.hs-incl: prelude/primops.txt
734         $(GENPRIMOP) --data-decl          < $< > $@
735 primop-tag.hs-incl: prelude/primops.txt
736         $(GENPRIMOP) --primop-tag         < $< > $@
737 primop-list.hs-incl: prelude/primops.txt
738         $(GENPRIMOP) --primop-list        < $< > $@
739 primop-has-side-effects.hs-incl: prelude/primops.txt
740         $(GENPRIMOP) --has-side-effects   < $< > $@
741 primop-out-of-line.hs-incl: prelude/primops.txt
742         $(GENPRIMOP) --out-of-line        < $< > $@
743 primop-commutable.hs-incl: prelude/primops.txt
744         $(GENPRIMOP) --commutable         < $< > $@
745 primop-needs-wrapper.hs-incl: prelude/primops.txt
746         $(GENPRIMOP) --needs-wrapper      < $< > $@
747 primop-can-fail.hs-incl: prelude/primops.txt
748         $(GENPRIMOP) --can-fail           < $< > $@
749 primop-strictness.hs-incl: prelude/primops.txt
750         $(GENPRIMOP) --strictness         < $< > $@
751 primop-primop-info.hs-incl: prelude/primops.txt
752         $(GENPRIMOP) --primop-primop-info < $< > $@
753
754 # Usages aren't used any more; but the generator 
755 # can still generate them if we want them back
756 primop-usage.hs-incl: prelude/primops.txt
757         $(GENPRIMOP) --usage              < $< > $@
758
759
760 #-----------------------------------------------------------------------------
761 #               Linking
762
763 # Include libghccompat in stage1 only.  In stage2 onwards, all these
764 # libraries will be available from the main libraries.
765
766 ifeq "$(stage)" "1"
767 include $(GHC_COMPAT_DIR)/compat.mk
768 endif
769
770 SRC_LD_OPTS += -no-link-chk
771
772 ifeq "$(GhcUnregisterised)" "NO"
773 ifeq "$(HOSTPLATFORM)" "ia64-unknown-linux"
774 # needed for generating proper relocation in large binaries: trac #856
775 SRC_LD_OPTS += -optl-Wl,--relax
776 endif
777 endif
778
779 # -----------------------------------------------------------------------------
780 # create ghc-inplace, a convenient way to run ghc from the build tree...
781 # See comments in $(FPTOOLS_TOP)/utils/ghc-pkg/Makefile for why we use
782 # a real binary here rather than a shell script.
783
784 INPLACE_SRC  = $(odir)/ghc-inplace.c
785 INPLACE_PROG = $(odir)/ghc-inplace$(_way)$(exeext)
786 INPLACE_EXTRA_FLAGS = -I$(TOP)/includes
787 EXCLUDED_C_SRCS += ghc-inplace.c
788
789 CLEAN_FILES += $(INPLACE_SRC)
790
791 GHC_PATH=$(FPTOOLS_TOP_ABS)/$(GHC_COMPILER_DIR_REL)/$(GHC_PROG)$(exeext)
792
793 $(INPLACE_PROG): ghc-inplace.c
794         $(SED) -e "s@GHC_PATH@$(GHC_PATH)@g" -e "s@TOP_ABS@$(FPTOOLS_TOP_ABS)@g" < $< > $(INPLACE_SRC)
795         $(HC) -cpp $(INPLACE_EXTRA_FLAGS) $(INPLACE_SRC) -o $@
796
797 all :: $(INPLACE_PROG)
798
799 CLEAN_FILES += $(INPLACE_PROG)
800
801 ifeq "$(stage)" "1"
802 ghc-inplace : $(INPLACE_PROG)
803         $(RM) -f $@ && $(LN_S) $< $@
804
805 all :: ghc-inplace
806
807 CLEAN_FILES += ghc-inplace
808 endif
809
810 #-----------------------------------------------------------------------------
811 #               install
812
813 # We don't want ghc treated as an ordinary executable,
814 # but put it together with the libraries.
815 # Also don't want any interface files installed
816
817 DESTDIR = $(INSTALL_LIBRARY_DIR_GHC)
818
819 ifneq "$(HOSTPLATFORM)" "i386-unknown-mingw32"
820 INSTALL_LIBEXECS += $(GHC_PROG)
821 else
822 INSTALL_PROGS += $(GHC_PROG)
823 endif
824
825 # ----------------------------------------------------------------------------
826 # profiling.
827
828 # rename/RnBinds_HC_OPTS += -auto-all
829 # rename/RnEnv_HC_OPTS += -auto-all
830 # rename/RnExpr_HC_OPTS += -auto-all
831 # rename/RnHiFiles_HC_OPTS += -auto-all
832 # rename/RnHsSyn_HC_OPTS += -auto-all
833 # rename/Rename_HC_OPTS += -auto-all
834 # rename/RnIfaces_HC_OPTS += -auto-all
835 # rename/RnNames_HC_OPTS += -auto-all
836 # rename/RnSource_HC_OPTS += -auto-all
837 # rename/RnTypes_HC_OPTS += -auto-all
838
839 # typecheck/Inst_HC_OPTS += -auto-all
840 # typecheck/TcBinds_HC_OPTS += -auto-all
841 # typecheck/TcClassDcl_HC_OPTS += -auto-all
842 # typecheck/TcDefaults_HC_OPTS += -auto-all
843 # typecheck/TcDeriv_HC_OPTS += -auto-all
844 # typecheck/TcEnv_HC_OPTS += -auto-all
845 # typecheck/TcExpr_HC_OPTS += -auto-all
846 # typecheck/TcForeign_HC_OPTS += -auto-all
847 # typecheck/TcGenDeriv_HC_OPTS += -auto-all
848 # typecheck/TcHsSyn_HC_OPTS += -auto-all
849 # typecheck/TcIfaceSig_HC_OPTS += -auto-all
850 # typecheck/TcInstDcls_HC_OPTS += -auto-all
851 # typecheck/TcMatches_HC_OPTS += -auto-all
852 # typecheck/TcMonoType_HC_OPTS += -auto-all
853 # typecheck/TcMType_HC_OPTS += -auto-all
854 # typecheck/TcPat_HC_OPTS += -auto-all
855 # typecheck/TcRnDriver_HC_OPTS += -auto-all
856 # #typecheck/TcRnMonad_HC_OPTS += -auto-all
857 # #typecheck/TcRnTypes_HC_OPTS += -auto-all
858 # typecheck/TcRules_HC_OPTS += -auto-all
859 # typecheck/TcSimplify_HC_OPTS += -auto-all
860 # typecheck/TcSplice_HC_OPTS += -auto-all
861 # typecheck/TcTyClsDecls_HC_OPTS += -auto-all
862 # typecheck/TcTyDecls_HC_OPTS += -auto-all
863 # typecheck/TcType_HC_OPTS += -auto-all
864 # typecheck/TcUnify_HC_OPTS += -auto-all
865
866 # coreSyn/CorePrep_HC_OPTS += -auto-all
867 # parser/Parser_HC_OPTS += -fasm
868
869 #-----------------------------------------------------------------------------
870 # Building the GHC package
871
872 # The GHC package is made from the stage 2 build and later.
873 # Fortunately the package build system framework more or less does the
874 # right thing for us here.
875
876 ifneq "$(findstring $(stage), 2 3)" ""
877 BUILD_GHC_PACKAGE=YES
878 endif
879
880 ifeq "$(BUILD_GHC_PACKAGE)" "YES"
881 PACKAGE = ghc
882 HIERARCHICAL_LIB = NO
883 VERSION = $(ProjectVersion)
884 PKG_DEPENDS += base haskell98
885 LIB_LD_OPTS += $(foreach pkg,$(PKG_DEPENDS),-package $(pkg))
886 # We have to expand each package dependency with its version, which we
887 # can do by calling "ghc-pkg list $pkg --simple-output".
888 PACKAGE_CPP_OPTS += -DPKG_DEPENDS='$(foreach pkg,$(PKG_DEPENDS),$(shell $(GHC_PKG_INPLACE) latest --global $(pkg)))'
889 # We want to define STAGE to be like "2" in the Haskell code, so we need
890 # to quote the "s so that they don't get interpreted by the shell.
891 PACKAGE_CPP_OPTS += -DSTAGE='"$(stage)"'
892
893 # Omit Main from the library, the client will want to plug their own Main in
894 LIBOBJS = $(filter-out $(odir)/main/Main.$(way_)o $(odir)/parser/hschooks.$(way_)o, $(OBJS))
895
896 # disable splitting: it won't really help with GHC, and the specialised
897 # build system for compiler/ isn't set up to handle it.
898 SplitObjs = NO
899
900 # the package build system likes to set WAYS=$(GhcLibWays), but we don't 
901 # really want to build the whole of GHC multiple ways... if you do,
902 # set GhcCompilerWays instead.
903 GhcLibWays = $(GhcCompilerWays)
904
905 # override $(GhcLibHcOpts): we want GhcStage2HcOpts to take precedence
906 GhcLibHcOpts =
907
908 ifeq "$(DOING_BIN_DIST)" "YES"
909 # This is derived from the sources when we are in a source tree, but we
910 # don't have any sources in a bindist, so we have to shortcut it
911 HS_IFACES := $(wildcard stage$(stage)/*/*.hi)
912 else
913 # override default definition of HS_IFACES so we can add $(odir)
914 HS_IFACES   = $(addsuffix .$(way_)hi,$(basename $(HS_OBJS)))
915 endif
916
917 # Haddock can't handle recursive modules currently, so we disable it for now.
918 override HADDOCK_DOCS = NO
919
920 # Tell package.mk not to set $(HC)
921 NO_SET_HC = YES
922
923 # The stage 2 GHC binary itself is built by  compiling main/Main.hs 
924 # (the same as used in stage 1) against the GHC package.
925 #
926 # This is done by compiling Main.hs separately and linking it with 
927 # -package ghc.  This is done using a separate Makefile, Makefile.ghcbin
928 # Why? See comments in Makefile.ghcbin
929
930 # The stage 2 and stage 3 package.conf.in files are different, because they
931 # point to either the stage2/ or stage3/ dirs in import-dirs.  Hence before
932 # linking the ghc binary we must install the correct version of the package
933 # configuration.  Yeuch... maybe one day this will all be done more cleanly.
934 STAMP_PKG_CONF = $(GHC_DRIVER_DIR)/stamp-pkg-conf-$(PACKAGE)
935
936 # Propagate standard targets to Makefile.ghcbin
937 docs runtests $(BOOT_TARGET) TAGS clean distclean mostlyclean maintainer-clean $(INSTALL_TARGET) $(INSTALL_DOCS_TARGET) html chm HxS ps dvi txt::
938         $(MAKE) -f Makefile.ghcbin $(MFLAGS) $@
939 endif
940
941 #-----------------------------------------------------------------------------
942 #               clean
943
944 MAINTAINER_CLEAN_FILES += parser/Parser.info main/ParsePkgConf.info
945
946 #-----------------------------------------------------------------------------
947 #               Include target-rule boilerplate
948
949 # Don't use the default MKDEPENDHS stuff... we'll do our own, below
950 MKDEPENDHS_SRCS =
951 MKDEPENDC_SRCS =
952
953 # Make doesn't work this out for itself, it seems
954 parser/Parser.y : parser/Parser.y.pp
955 EXTRA_SRCS += parser/Parser.y
956
957
958 #-----------------------------------------------------------------------------
959 #               Source files for tags file generation
960 #
961 # We want to excluded derived sources, because they won't be in the source
962 # tree, which is where we are going to move the TAGS file to.a
963
964 TAGS_HS_SRCS = parser/Parser.y.pp $(filter-out $(DERIVED_SRCS) main/Config.hs parser/Parser.y, $(sort $(SRCS)))
965
966 WRONG_GHCTAGS_HS_SRCS = $(filter-out $(DERIVED_SRCS) main/Config.hs parser/Parser.y, $(sort $(SRCS)))
967 # above is wrong because of the following problem:
968 #      module `main:DataCon' is defined in multiple files: basicTypes/DataCon.lhs
969 #                                                        basicTypes/DataCon.lhs-boot
970
971 GHCTAGS_HS_SRCS = $(HS_SRCS)
972 GHCTAGS_HC_OPTS = $(patsubst -i$(odir)/%, -i%, $(HC_OPTS))
973 GHCTAGS_HC_OPTS += -DSTAGE='"$(stage)"'
974
975 #------------------------------------------------------------
976 #                       Tags
977
978 .PHONY: ghctags
979
980 ghctags :: $(GHCTAGS_HS_SRCS) $(TAGS_C_SRCS)
981         @if [ "$(stage)" != 2 ]; then echo "Must use 'make stage=2 ghctags'"; exit 1; fi
982         @$(RM) TAGS
983         @touch TAGS
984         @echo SOURCES ARE "$(GHCTAGS_HS_SRCS)"
985         : ifneq "$(GHCTAGS_HS_SRCS)" ""
986         @echo TIME TO ROCK AND ROLL
987         # $(GHCTAGS_INPLACE) -- $(MKDEPENDHS_OPTS) $(filter-out -split-objs, $(MKDEPENDHS_HC_OPTS)) -- $(GHCTAGS_HS_SRCS)
988         $(GHCTAGS_INPLACE) -- $(GHCTAGS_HC_OPTS) -- $(GHCTAGS_HS_SRCS)
989         : endif
990 ifneq "$(TAGS_C_SRCS)" ""
991         etags -a $(TAGS_C_SRCS)
992 endif
993         @( DEREFFED=`ls -l Makefile | sed -e 's/.*-> \(.*\)/\1/g'` && $(RM) `dirname $$DEREFFED`/TAGS && $(CP) TAGS `dirname $$DEREFFED` ) 2>/dev/null || echo TAGS file generated, perhaps copy over to source tree?
994
995 include $(TOP)/mk/target.mk
996
997 ifeq "$(BUILD_GHC_PACKAGE)" "YES"
998 all :: $(GHC_PROG)
999 endif
1000
1001 $(odir)/main/Config.$(way_)o: SRC_HC_OPTS+=-DSTAGE='"$(stage)"'
1002
1003 ifneq "$(findstring $(stage), 2 3)" ""
1004 $(warning LIBRARY is $(LIBRARY))
1005
1006 ifneq "$(DOING_BIN_DIST)" "YES"
1007 $(GHC_PROG) : $(LIBRARY) main/Main.hs
1008         $(RM) package.conf.inplace
1009         $(RM) $(STAMP_PKG_CONF)
1010         $(MAKE) way="" $(STAMP_PKG_CONF)
1011         $(MAKE) -f Makefile.ghcbin $(MFLAGS) HS_PROG=$(GHC_PROG) $@
1012 endif
1013 endif
1014
1015
1016 #-----------------------------------------------------------------------------
1017 # binary-dist
1018
1019 binary-dist:
1020         $(INSTALL_DIR)                         $(BIN_DIST_DIR)/compiler
1021         $(INSTALL_DIR)                         $(BIN_DIST_DIR)/compiler/stage$(stage)
1022         echo "stage=$(stage)"                > $(BIN_DIST_DIR)/compiler/Makefile
1023         cat Makefile                        >> $(BIN_DIST_DIR)/compiler/Makefile
1024         $(INSTALL_DATA)    package.conf.in     $(BIN_DIST_DIR)/compiler/
1025         set -e; for d in stage$(stage)/*/; do $(INSTALL_DIR) $(BIN_DIST_DIR)/compiler/$$d; done
1026         set -e; for f in $(HS_IFACES); do $(INSTALL_DATA) $$f $(BIN_DIST_DIR)/compiler/$$f; done
1027 ifneq "$(INSTALL_LIBS)" ""
1028         set -e; for f in $(INSTALL_LIBS); do $(INSTALL_DATA) $$f $(BIN_DIST_DIR)/compiler/$$f; done
1029 endif
1030 ifneq "$(INSTALL_PROGS)" ""
1031         set -e; for f in $(INSTALL_PROGS); do $(INSTALL_PROGRAM) $$f $(BIN_DIST_DIR)/compiler/$$f; done
1032 endif
1033 ifneq "$(INSTALL_LIBEXECS)" ""
1034         set -e; for f in $(INSTALL_LIBEXECS); do $(INSTALL_PROGRAM) $$f $(BIN_DIST_DIR)/compiler/$$f; done
1035 endif
1036
1037 # -----------------------------------------------------------------------------
1038 # Explicit dependencies
1039
1040 # Some .hs files #include other source files, but since ghc -M doesn't spit out
1041 # these dependencies we have to include them manually.
1042
1043 # We don't add dependencies on HsVersions.h, ghcautoconf.h, or ghc_boot_platform.h,
1044 # because then modifying one of these files would force recompilation of everything,
1045 # which is probably not what you want.  However, it does mean you have to be
1046 # careful to recompile stuff you need if you reconfigure or change HsVersions.h.
1047
1048 # Aargh, these don't work properly anyway, because GHC's recompilation checker
1049 # just reports "compilation NOT required".  Do we have to add -no-recomp for each
1050 # of these .hs files?  I haven't done anything about this yet.
1051
1052 $(odir)/codeGen/Bitmap.$(way_)o         :  ../includes/MachDeps.h
1053 $(odir)/codeGen/CgCallConv.$(way_)o     :  ../includes/StgFun.h
1054 $(odir)/codeGen/CgProf.$(way_)o         :  ../includes/MachDeps.h
1055 $(odir)/codeGen/CgProf.$(way_)o         :  ../includes/Constants.h
1056 $(odir)/codeGen/CgProf.$(way_)o         :  ../includes/DerivedConstants.h
1057 $(odir)/codeGen/CgTicky.$(way_)o        :  ../includes/DerivedConstants.h
1058 $(odir)/codeGen/ClosureInfo.$(way_)o    :  ../includes/MachDeps.h
1059 $(odir)/codeGen/SMRep.$(way_)o          :  ../includes/MachDeps.h
1060 $(odir)/codeGen/SMRep.$(way_)o          :  ../includes/ClosureTypes.h
1061 $(odir)/ghci/ByteCodeAsm.$(way_)o       :  ../includes/Bytecodes.h
1062 $(odir)/ghci/ByteCodeFFI.$(way_)o       :  nativeGen/NCG.h
1063 $(odir)/ghci/ByteCodeInstr.$(way_)o     :  ../includes/MachDeps.h
1064 $(odir)/ghci/ByteCodeItbls.$(way_)o     :  ../includes/ClosureTypes.h
1065 $(odir)/ghci/ByteCodeItbls.$(way_)o     :  nativeGen/NCG.h
1066 $(odir)/main/Constants.$(way_)o         :  ../includes/MachRegs.h
1067 $(odir)/main/Constants.$(way_)o         :  ../includes/Constants.h
1068 $(odir)/main/Constants.$(way_)o         :  ../includes/MachDeps.h
1069 $(odir)/main/Constants.$(way_)o         :  ../includes/DerivedConstants.h
1070 $(odir)/main/Constants.$(way_)o         :  ../includes/GHCConstants.h
1071 $(odir)/nativeGen/AsmCodeGen.$(way_)o   :  nativeGen/NCG.h
1072 $(odir)/nativeGen/MachCodeGen.$(way_)o  :  nativeGen/NCG.h
1073 $(odir)/nativeGen/MachCodeGen.$(way_)o  : ../includes/MachDeps.h
1074 $(odir)/nativeGen/MachInstrs.$(way_)o   :  nativeGen/NCG.h
1075 $(odir)/nativeGen/MachRegs.$(way_)o     :  nativeGen/NCG.h
1076 $(odir)/nativeGen/MachRegs.$(way_)o     :  ../includes/MachRegs.h
1077 $(odir)/nativeGen/PositionIndependentCode.$(way_)o :  nativeGen/NCG.h
1078 $(odir)/nativeGen/PprMach.$(way_)o      :  nativeGen/NCG.h
1079 $(odir)/nativeGen/RegAllocInfo.$(way_)o :  nativeGen/NCG.h
1080 $(odir)/typecheck/TcForeign.$(way_)o    :  nativeGen/NCG.h
1081 $(odir)/utils/Binary.$(way_)o           :  ../includes/MachDeps.h
1082 $(odir)/utils/FastMutInt.$(way_)o       :  ../includes/MachDeps.h
1083
1084 # -----------------------------------------------------------------------------
1085 # Dependencies
1086
1087 MKDEPENDHS_HC_OPTS = $(patsubst -i$(odir)/%, -i%, $(HC_OPTS))
1088
1089 MKDEPENDHS=$(HC)
1090
1091 # Must do this *after* including target.mk, because $(HS_SRCS) isn't set yet.
1092 depend :: $(STAGE_PLATFORM_H) $(HS_SRCS) $(C_SRCS)
1093         touch .depend-BASE
1094 ifneq "$(BootingFromHc)" "YES"
1095         $(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)
1096 endif
1097         $(MKDEPENDC) -f .depend-BASE $(MKDEPENDC_OPTS) $(foreach way,$(WAYS),-s $(way)) -- $(CC_OPTS) -- $(C_SRCS) 
1098         $(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)
1099 # The binmode stuff tells perl not to add stupid ^M's to the output
1100 #
1101 # The /lib/compat replacement is to workaround a bug in the
1102 # -optdep--exclude-module flag in GHC 6.4.  It is not required for any
1103 # other version of GHC, but doesn't do any harm.
1104
1105 ifeq "$(MakefileDeps)" "YES"
1106 $(CONFIG_HS) : Makefile
1107 stage1/$(PLATFORM_H) : Makefile
1108 stage2/$(PLATFORM_H) : Makefile
1109 endif
1110
1111 -include .depend-$(stage)