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