Simplify a bit of makefile
[ghc-hetmet.git] / ghc.mk
1 # -----------------------------------------------------------------------------
2 #
3 # (c) 2009 The University of Glasgow
4 #
5 # This file is part of the GHC build system.
6 #
7 # To understand how the build system works and how to modify it, see
8 #      http://hackage.haskell.org/trac/ghc/wiki/Building/Architecture
9 #      http://hackage.haskell.org/trac/ghc/wiki/Building/Modifying
10 #
11 # -----------------------------------------------------------------------------
12
13 # ToDo List.
14 #
15 #   * remove old Makefiles, add new stubs for building in subdirs
16 #     * docs/Makefile
17 #     * docs/docbook-cheat-sheet/Makefile
18 #     * docs/ext-core/Makefile
19 #     * docs/man/Makefile
20 #     * docs/storage-mgmt/Makefile
21 #     * docs/vh/Makefile
22 #     * rts/dotnet/Makefile
23 #     * utils/Makefile
24 #   * add Makefiles for the rest of the utils/ programs that aren't built
25 #     by default (need to exclude them from 'make all' too)
26
27 # Possible cleanups:
28 #
29 #   * per-source-file dependencies instead of one .depend file?
30 #   * eliminate undefined variables, and use --warn-undefined-variables?
31 #   * put outputs from different ways in different subdirs of distdir/build,
32 #     then we don't have to use -osuf/-hisuf.  We would have to install
33 #     them in different places too, so we'd need ghc-pkg support for packages
34 #     of different ways.
35 #   * make PACKAGES generated by './configure' or './boot'?
36 #   * we should use a directory of package.conf files rather than a single
37 #     file for the inplace package database, so that we can express
38 #     dependencies more accurately.  Otherwise it's possible to get into
39 #     a state where the package database is out of date, and the build
40 #     system doesn't know.
41
42 # Approximate build order.
43 #
44 # The actual build order is defined by dependencies, and the phase
45 # ordering used to ensure correct ordering of makefile-generation; see
46 #    http://hackage.haskell.org/trac/ghc/wiki/Building/Architecture/Idiom/PhaseOrdering
47 #
48 #     * With bootstrapping compiler:
49 #           o Build utils/ghc-cabal
50 #           o Build utils/ghc-pkg
51 #           o Build utils/hsc2hs
52 #     * For each package:
53 #           o configure, generate package-data.mk and inplace-pkg-info
54 #           o register each package into inplace/lib/package.conf
55 #     * build libffi
56 #     * With bootstrapping compiler:
57 #           o Build libraries/{filepath,hpc,extensible-exceptions,Cabal}
58 #           o Build compiler (stage 1)
59 #     * With stage 1:
60 #           o Build libraries/*
61 #           o Build rts
62 #           o Build utils/* (except haddock)
63 #           o Build compiler (stage 2)
64 #     * With stage 2:
65 #           o Build utils/haddock
66 #           o Build compiler (stage 3) (optional)
67 #     * With haddock:
68 #           o libraries/*
69 #           o compiler
70
71 .PHONY: default all haddock
72
73 # We need second expansion for the way we handle directories, so that
74 #     | $$$$(dir $$$$@)/.
75 # expands to the directory of a rule that uses a % pattern.
76 .SECONDEXPANSION:
77
78 default : all
79
80 # Catch make if it runs away into an infinite loop
81 ifeq      "$(MAKE_RESTARTS)" ""
82 else ifeq "$(MAKE_RESTARTS)" "1"
83 else ifeq "$(MAKE_RESTARTS)" "2"
84 else
85 $(error Make has restarted itself $(MAKE_RESTARTS) times; is there a makefile bug?)
86 endif
87
88 ifneq "$(CLEANING)" "YES"
89 CLEANING = NO
90 endif
91
92 # -----------------------------------------------------------------------------
93 # Misc GNU make utils
94
95 nothing=
96 space=$(nothing) $(nothing)
97 comma=,
98
99 # Cancel all suffix rules.  Ideally we'd like to have 'make -r' turned on
100 # by default, because that disables all the implicit rules, but there doesn't
101 # seem to be a good way to do that.  This turns off all the old-style suffix
102 # rules, which does half the job and speeds up make quite a bit:
103 .SUFFIXES:
104
105 # -----------------------------------------------------------------------------
106 # Makefile debugging
107 #
108 # to see the effective value used for a Makefile variable, do
109 #  make show VALUE=MY_VALUE
110 #
111
112 show:
113         @echo '$(VALUE)="$($(VALUE))"'
114
115 # -----------------------------------------------------------------------------
116 # Include subsidiary build-system bits
117
118 include mk/tree.mk
119
120 ifeq "$(findstring clean,$(MAKECMDGOALS))" ""
121 include mk/config.mk
122 ifeq "$(ProjectVersion)" ""
123 $(error Please run ./configure first)
124 endif
125 endif
126
127 include mk/ways.mk
128
129 # (Optional) build-specific configuration
130 include mk/custom-settings.mk
131
132 ifeq "$(findstring clean,$(MAKECMDGOALS))" ""
133 ifeq "$(GhcLibWays)" ""
134 $(error $$(GhcLibWays) is empty, it must contain at least one way)
135 endif
136 endif
137
138 # -----------------------------------------------------------------------------
139 # Utility definitions
140
141 include rules/trace.mk
142 include rules/make-command.mk
143
144 # -----------------------------------------------------------------------------
145 # Macros for standard targets
146
147 include rules/all-target.mk
148 include rules/clean-target.mk
149
150 # -----------------------------------------------------------------------------
151 # The inplace tree
152
153 $(eval $(call clean-target,inplace,,inplace/bin inplace/lib))
154
155 # -----------------------------------------------------------------------------
156 # Whether to build dependencies or not
157
158 # When we're just doing 'make clean' or 'make show', then we don't need
159 # to build dependencies.
160
161 ifneq "$(findstring clean,$(MAKECMDGOALS))" ""
162 NO_INCLUDE_DEPS = YES
163 NO_INCLUDE_PKGDATA = YES
164 endif
165 ifneq "$(findstring bootstrapping-files,$(MAKECMDGOALS))" ""
166 NO_INCLUDE_DEPS = YES
167 NO_INCLUDE_PKGDATA = YES
168 endif
169 ifeq "$(findstring show,$(MAKECMDGOALS))" "show"
170 NO_INCLUDE_DEPS = YES
171 # We want package-data.mk for show
172 endif
173
174 # -----------------------------------------------------------------------------
175 # Ways
176
177 include rules/way-prelims.mk
178
179 $(foreach way,$(ALL_WAYS),\
180   $(eval $(call way-prelims,$(way))))
181
182 # -----------------------------------------------------------------------------
183 # Compilation Flags
184
185 include rules/distdir-way-opts.mk
186
187 # -----------------------------------------------------------------------------
188 # Finding source files and object files
189
190 include rules/hs-sources.mk
191 include rules/c-sources.mk
192 include rules/includes-sources.mk
193 include rules/hs-objs.mk
194 include rules/c-objs.mk
195 include rules/cmm-objs.mk
196
197 # -----------------------------------------------------------------------------
198 # Suffix rules
199
200 # Suffix rules cause "make clean" to fail on Windows (trac #3233)
201 # so we don't make any when cleaning.
202 ifneq "$(CLEANING)" "YES"
203
204 include rules/hs-suffix-rules-srcdir.mk
205 include rules/hs-suffix-rules.mk
206 include rules/hi-rule.mk
207
208 $(foreach way,$(ALL_WAYS),\
209   $(eval $(call hi-rule,$(way))))
210
211 include rules/c-suffix-rules.mk
212 include rules/cmm-suffix-rules.mk
213
214 endif # CLEANING=YES
215
216 # -----------------------------------------------------------------------------
217 # Building package-data.mk files from .cabal files
218
219 include rules/package-config.mk
220
221 # -----------------------------------------------------------------------------
222 # Building dependencies
223
224 include rules/build-dependencies.mk
225
226 # -----------------------------------------------------------------------------
227 # Build package-data.mk files
228
229 include rules/build-package-data.mk
230
231 # -----------------------------------------------------------------------------
232 # Build and install a program
233
234 include rules/build-prog.mk
235 include rules/shell-wrapper.mk
236
237 # -----------------------------------------------------------------------------
238 # Build a perl script
239
240 include rules/build-perl.mk
241
242 # -----------------------------------------------------------------------------
243 # Build a package
244
245 include rules/build-package.mk
246 include rules/build-package-way.mk
247 include rules/haddock.mk
248 include rules/tags-package.mk
249 include rules/extra-packages.mk
250
251 # -----------------------------------------------------------------------------
252 # Registering hand-written package descriptions (used in libffi and rts)
253
254 include rules/manual-package-config.mk
255
256 # -----------------------------------------------------------------------------
257 # Docs
258
259 include rules/docbook.mk
260
261 # -----------------------------------------------------------------------------
262 # Making bindists
263
264 include rules/bindist.mk
265
266 # -----------------------------------------------------------------------------
267 # Directories
268
269 # Don't try to delete directories:
270 .PRECIOUS: %/.
271
272 # Create build directories on demand.  NB. the | below: this indicates
273 # that $(MKDIRHIER) is an order-only dependency, which means that this
274 # rule fires after building mkdirhier, but we won't try to recreate
275 # directories if mkdirhier changes.
276 %/. : | $(MKDIRHIER)
277         "$(MKDIRHIER)" $@
278
279 # -----------------------------------------------------------------------------
280 # Packages
281
282 # --------------------------------
283 # Properties of packages
284 # These lists say "if this package is built, here's a property it has"
285 # They do not say "this package will be built"; see $(PACKAGES_xx) for that
286
287 # Packages that are built but not installed
288 INTREE_ONLY_PACKAGES := haskeline mtl terminfo utf8-string xhtml
289
290 DPH_PACKAGES := dph/dph-base dph/dph-prim-interface dph/dph-prim-seq \
291                 dph/dph-common dph/dph-prim-par dph/dph-par dph/dph-seq \
292                 vector primitive
293
294 # Packages that, if present, must be built by the stage2 compiler,
295 # because they use TH and/or annotations, or depend on other stage2
296 # packages:
297 STAGE2_PACKAGES := $(DPH_PACKAGES) haskell98 haskell2010 random
298 # Packages that we shouldn't build if we don't have TH (e.g. because
299 # we're building a profiled compiler):
300 TH_PACKAGES := $(DPH_PACKAGES)
301
302 # Packages that are built by stage0, in addition to stage1.  These
303 # packages are dependencies of GHC, that we do not assume the stage0
304 # compiler already has installed (or up-to-date enough).
305 #
306 # We assume that the stage0 compiler has a suitable bytestring package,
307 # so we don't have to include it below.
308 STAGE0_PACKAGES = Cabal hpc extensible-exceptions binary bin-package-db
309
310 # These packages are installed, but are installed hidden
311 # Why install them at all?  Because the 'ghc' package depends on them
312 HIDDEN_PACKAGES = binary
313
314 # $(EXTRA_PACKAGES)  is another classification, of packages built but
315 #                    not installed
316 #                    It is set in rules/extra-package.mk, 
317 #                    by $(call extra-packages) a little further down 
318 #                    this ghc.mk 
319
320
321 # --------------------------------
322 # Packages to build
323 # The lists of packages that we *actually* going to build in each stage:
324 #
325 #  $(STAGE0_PACKAGE)    does double duty; it really is the list of packages
326 #                       we build the bootstrap compiler in stage 0
327 #
328 #  $(PACKAGES)          A list of directories relative to libraries/ containing
329 #                       packages that will be built by stage1, in dependency
330 #                       order.
331 #
332 #  $(PACKAGES_STAGE2)   Ditto, for stage2.
333 #
334
335 define addPackageGeneral
336 # args: $1 = PACKAGES variable, $2 = package, $3 = condition
337     ifeq "$3" ""
338         $1 += $2
339     else
340         ifeq "$$(CLEANING)" "YES"
341             $1 += $2
342         else
343             ifeq $3
344                 $1 += $2
345             endif
346         endif
347     endif
348 endef
349
350 define addPackage # args: $1 = package, $2 = condition
351 ifneq "$(filter $1,$(TH_PACKAGES)) $(GhcProfiled)" "$1 YES"
352 ifeq "$(filter $1,$(STAGE2_PACKAGES))" "$1"
353 $(call addPackageGeneral,PACKAGES_STAGE2,$1,$2)
354 else
355 $(call addPackageGeneral,PACKAGES,$1,$2)
356 endif
357 endif
358 endef
359
360 $(eval $(call addPackage,ghc-prim))
361 ifeq "$(CLEANING)" "YES"
362 $(eval $(call addPackage,integer-gmp))
363 $(eval $(call addPackage,integer-simple))
364 else
365 $(eval $(call addPackage,$(INTEGER_LIBRARY)))
366 endif
367 $(eval $(call addPackage,base))
368 $(eval $(call addPackage,filepath))
369 $(eval $(call addPackage,array))
370 $(eval $(call addPackage,bytestring))
371 $(eval $(call addPackage,containers))
372
373 $(eval $(call addPackage,Win32,($$(Windows),YES)))
374 $(eval $(call addPackage,unix,($$(Windows),NO)))
375
376 $(eval $(call addPackage,old-locale))
377 $(eval $(call addPackage,old-time))
378 $(eval $(call addPackage,time))
379 $(eval $(call addPackage,directory))
380 $(eval $(call addPackage,process))
381 $(eval $(call addPackage,random))
382 $(eval $(call addPackage,extensible-exceptions))
383 $(eval $(call addPackage,haskell98))
384 $(eval $(call addPackage,haskell2010))
385 $(eval $(call addPackage,hpc))
386 $(eval $(call addPackage,pretty))
387 $(eval $(call addPackage,template-haskell))
388 $(eval $(call addPackage,Cabal))
389 $(eval $(call addPackage,binary))
390 $(eval $(call addPackage,bin-package-db))
391 $(eval $(call addPackage,mtl))
392 $(eval $(call addPackage,utf8-string))
393 $(eval $(call addPackage,xhtml))
394 $(eval $(call addPackage,terminfo,($$(Windows),NO)))
395 $(eval $(call addPackage,haskeline))
396
397 $(eval $(call extra-packages))
398
399 # -------------------------------------------
400 # Dependencies between package-data.mk files
401
402 # We cannot run ghc-cabal to configure a package until we have
403 # configured and registered all of its dependencies.  So the following
404 # hack forces all the configure steps to happen in exactly the following order:
405 #
406 #  $(PACKAGES) ghc(stage2) $(PACKAGES_STAGE2)
407 #
408 # Ideally we should use the correct dependencies here to allow more
409 # parallelism, but we don't know the dependencies until we've
410 # generated the pacakge-data.mk files.
411 define fixed_pkg_dep
412 libraries/$1/$2/package-data.mk : $$(GHC_PKG_INPLACE) $$(fixed_pkg_prev)
413 fixed_pkg_prev:=libraries/$1/$2/package-data.mk
414 endef
415
416 ifneq "$(BINDIST)" "YES"
417 fixed_pkg_prev=
418 $(foreach pkg,$(PACKAGES),$(eval $(call fixed_pkg_dep,$(pkg),dist-install)))
419
420 # the GHC package doesn't live in libraries/, so we add its dependency manually:
421 compiler/stage2/package-data.mk: $(fixed_pkg_prev)
422 fixed_pkg_prev:=compiler/stage2/package-data.mk
423
424 # and continue with PACKAGES_STAGE2, which depend on GHC:
425 $(foreach pkg,$(PACKAGES_STAGE2),$(eval $(call fixed_pkg_dep,$(pkg),dist-install)))
426
427 ghc/stage1/package-data.mk: compiler/stage1/package-data.mk
428 ghc/stage2/package-data.mk: compiler/stage2/package-data.mk
429 # haddock depends on ghc and some libraries, but depending on GHC's
430 # package-data.mk is sufficient, as that in turn depends on all the
431 # libraries
432 utils/haddock/dist/package-data.mk: compiler/stage2/package-data.mk
433 utils/ghc-pwd/dist/package-data.mk: compiler/stage2/package-data.mk
434 utils/ghc-cabal/dist-install/package-data.mk: compiler/stage2/package-data.mk
435
436 utils/ghc-pkg/dist-install/package-data.mk: compiler/stage2/package-data.mk
437 utils/hsc2hs/dist-install/package-data.mk: compiler/stage2/package-data.mk
438 utils/compare_sizes/dist/package-data.mk: compiler/stage2/package-data.mk
439 utils/runghc/dist/package-data.mk: compiler/stage2/package-data.mk
440
441 # add the final two package.conf dependencies: ghc-prim depends on RTS,
442 # and RTS depends on libffi.
443 libraries/ghc-prim/dist-install/package-data.mk : rts/package.conf.inplace
444 rts/package.conf.inplace : libffi/package.conf.inplace
445 endif
446
447 # --------------------------------
448 # Misc package-related settings
449
450 BOOT_PKG_CONSTRAINTS := $(foreach p,$(STAGE0_PACKAGES),--constraint "$p == $(shell grep -i "^Version:" libraries/$p/$p.cabal | sed "s/[^0-9.]//g")")
451
452 # The actual .a and .so/.dll files: needed for dependencies.
453 ALL_STAGE1_LIBS  = $(foreach lib,$(PACKAGES),$(libraries/$(lib)_dist-install_v_LIB))
454 ifeq "$(BuildSharedLibs)" "YES"
455 ALL_STAGE1_LIBS += $(foreach lib,$(PACKAGES),$(libraries/$(lib)_dist-install_dyn_LIB))
456 endif
457 BOOT_LIBS = $(foreach lib,$(STAGE0_PACKAGES),$(libraries/$(lib)_dist-boot_v_LIB))
458
459 OTHER_LIBS = libffi/dist-install/build/libHSffi$(v_libsuf) libffi/dist-install/build/HSffi.o
460 ifeq "$(BuildSharedLibs)" "YES"
461 OTHER_LIBS  += libffi/dist-install/build/libHSffi$(dyn_libsuf)
462 endif
463
464 # ----------------------------------------
465 # Special magic for the ghc-prim package
466
467 # We want the ghc-prim package to include the GHC.Prim module when it
468 # is registered, but not when it is built, because GHC.Prim is not a
469 # real source module, it is built-in to GHC.  The old build system did
470 # this using Setup.hs, but we can't do that here, so we have a flag to
471 # enable GHC.Prim in the .cabal file (so that the ghc-prim package
472 # remains compatible with the old build system for the time being).
473 # GHC.Prim module in the ghc-prim package with a flag:
474 #
475 libraries/ghc-prim_CONFIGURE_OPTS += --flag=include-ghc-prim
476
477 # And then we strip it out again before building the package:
478 define libraries/ghc-prim_PACKAGE_MAGIC
479 libraries/ghc-prim_dist-install_MODULES := $$(filter-out GHC.Prim,$$(libraries/ghc-prim_dist-install_MODULES))
480 endef
481
482 PRIMOPS_TXT = $(GHC_COMPILER_DIR)/prelude/primops.txt
483
484 libraries/ghc-prim/dist-install/build/GHC/PrimopWrappers.hs : $(GENPRIMOP_INPLACE) $(PRIMOPS_TXT) | $$(dir $$@)/.
485         "$(GENPRIMOP_INPLACE)" --make-haskell-wrappers <$(PRIMOPS_TXT) >$@
486
487 # Required so that Haddock documents the primops.
488 libraries/ghc-prim_dist-install_EXTRA_HADDOCK_SRCS = libraries/ghc-prim/dist-install/build/autogen/GHC/Prim.hs
489
490 # ----------------------------------------
491 # Special magic for the integer package
492
493 ifneq "$(CLEANING)" "YES"
494 ifeq "$(INTEGER_LIBRARY)" "integer-gmp"
495 libraries/base_dist-install_CONFIGURE_OPTS += --flags=-integer-simple
496 else ifeq "$(INTEGER_LIBRARY)" "integer-simple"
497 libraries/base_dist-install_CONFIGURE_OPTS += --flags=integer-simple
498 else
499 $(error Unknown integer library: $(INTEGER_LIBRARY))
500 endif
501 endif
502
503 # ----------------------------------------------
504 # Checking packages with 'cabal check'
505
506 ifeq "$(phase)" ""
507 ifeq "$(CHECK_PACKAGES)" "YES"
508 all: check_packages
509 endif
510 endif
511
512 # These packages don't pass the Cabal checks because hs-source-dirs
513 # points outside the source directory. This isn't a real problem in
514 # these cases, so we just skip checking them.
515 # NB. these must come before we include the ghc.mk files below, because
516 # they disable the relevant rules.
517 CHECKED_libraries/dph/dph-seq = YES
518 CHECKED_libraries/dph/dph-par = YES
519 # In compiler's case, include-dirs points outside of the source tree
520 CHECKED_compiler = YES
521
522 # -----------------------------------------------------------------------------
523 # Include build instructions from all subdirs
524
525 ifneq "$(BINDIST)" "YES"
526 BUILD_DIRS += \
527    $(GHC_MKDIRHIER_DIR)
528 endif
529
530 BUILD_DIRS += \
531    docs/users_guide \
532    docs/ext-core \
533    docs/man \
534    $(GHC_UNLIT_DIR) \
535    $(GHC_HP2PS_DIR)
536
537 ifneq "$(GhcUnregisterised)" "YES"
538 BUILD_DIRS += \
539    $(GHC_MANGLER_DIR) \
540    $(GHC_SPLIT_DIR)
541 endif
542
543 ifneq "$(BINDIST)" "YES"
544 BUILD_DIRS += \
545    $(GHC_GENPRIMOP_DIR)
546 endif
547
548 BUILD_DIRS += \
549    driver \
550    driver/ghci \
551    driver/ghc \
552    driver/haddock \
553    libffi \
554    includes \
555    rts
556
557 ifneq "$(BINDIST)" "YES"
558 BUILD_DIRS += \
559    bindisttest \
560    $(GHC_GENAPPLY_DIR)
561 endif
562
563 ifneq "$(CLEANING)" "YES"
564 BUILD_DIRS += \
565    $(patsubst %, libraries/%, $(PACKAGES))
566 endif
567
568 ifeq "$(INTEGER_LIBRARY)" "integer-gmp"
569 BUILD_DIRS += libraries/integer-gmp/gmp
570 endif
571
572 BUILD_DIRS += \
573    utils/haddock \
574    utils/haddock/doc \
575    compiler \
576    $(GHC_HSC2HS_DIR) \
577    $(GHC_PKG_DIR) \
578    utils/testremove \
579    utils/ghctags \
580    utils/ghc-pwd \
581    $(GHC_CABAL_DIR) \
582    utils/hpc \
583    utils/runghc \
584    ghc
585 ifeq "$(Windows)" "YES"
586 BUILD_DIRS += \
587    $(GHC_TOUCHY_DIR)
588 endif
589
590 ifneq "$(BINDIST)" "YES"
591 BUILD_DIRS += \
592    utils/mkUserGuidePart
593 endif
594
595 BUILD_DIRS += utils/count_lines
596 BUILD_DIRS += utils/compare_sizes
597
598 ifneq "$(CLEANING)" "YES"
599 # After compiler/, because these packages depend on it
600 BUILD_DIRS += \
601    $(patsubst %, libraries/%, $(PACKAGES_STAGE2))
602 endif
603
604 # -----------------------------------------------------------------------------
605 # Phase handling
606
607 phase_0_or_later = YES
608 ifeq "$(findstring $(phase),0)" ""
609 phase_0_done = YES
610 phase_1_or_later = YES
611 endif
612 ifeq "$(findstring $(phase),0 1)" ""
613 phase_1_done = YES
614 phase_2_or_later = YES
615 endif
616 ifeq "$(findstring $(phase),0 1 2)" ""
617 phase_2_done = YES
618 phase_3_or_later = YES
619 endif
620 ifeq "$(findstring $(phase),0 1 2 3)" ""
621 phase_3_done = YES
622 endif
623
624 includes_dist-derivedconstants_CONFIGURE_PHASE = 0
625 includes_dist-ghcconstants_CONFIGURE_PHASE = 0
626
627 # We do these first, as making the sources for some later
628 # packages needs them, and we need the sources before we can
629 # work out dependencies
630 utils/hsc2hs_dist_CONFIGURE_PHASE = 0
631 utils/unlit_dist_CONFIGURE_PHASE = 0
632 utils/genprimopcode_dist_CONFIGURE_PHASE = 0
633
634 # Then the bootlibs
635 $(foreach lib,$(STAGE0_PACKAGES),$(eval \
636   libraries/$(lib)_dist-boot_CONFIGURE_PHASE = 1))
637 compiler_stage1_CONFIGURE_PHASE = 1
638 ghc_stage1_CONFIGURE_PHASE = 1
639 driver/ghc_dist_CONFIGURE_PHASE = 1
640 driver/ghci_dist_CONFIGURE_PHASE = 1
641 driver/haddock_dist_CONFIGURE_PHASE = 1
642 utils/touchy_dist_CONFIGURE_PHASE = 1
643
644 # In phase 2, the phase 1 things actually get built
645
646 # Finally, the stage1 compiler is used to make the dependencies for
647 # everything else, so we can now build the rest.
648 compiler_stage2_CONFIGURE_PHASE = 3
649 ghc_stage2_CONFIGURE_PHASE = 3
650
651 $(foreach lib,$(PACKAGES) $(PACKAGES_STAGE2),$(eval \
652   libraries/$(lib)_dist-install_CONFIGURE_PHASE = 3))
653
654 utils/hp2ps_dist_CONFIGURE_PHASE = 3
655 utils/genapply_dist_CONFIGURE_PHASE = 3
656 utils/haddock_dist_CONFIGURE_PHASE = 3
657 utils/hsc2hs_dist-install_CONFIGURE_PHASE = 3
658 utils/ghc-pkg_dist-install_CONFIGURE_PHASE = 3
659 utils/hpc_dist_CONFIGURE_PHASE = 3
660 utils/runghc_dist_CONFIGURE_PHASE = 3
661 utils/ghctags_dist_CONFIGURE_PHASE = 3
662 utils/ghc-pwd_dist_CONFIGURE_PHASE = 3
663 utils/ghc-cabal_dist-install_CONFIGURE_PHASE = 3
664 utils/mkUserGuidePart_dist_CONFIGURE_PHASE = 3
665 utils/compare_sizes_dist_CONFIGURE_PHASE = 3
666
667 # ----------------------------------------------
668 # Actually include all the sub-ghc.mk's
669
670 include $(patsubst %, %/ghc.mk, $(BUILD_DIRS))
671
672 # A useful pseudo-target (must be after the include above, because it needs
673 # the value of things like $(libraries/base_dist-install_v_LIB).
674 .PHONY: stage1_libs
675 stage1_libs : $(ALL_STAGE1_LIBS)
676
677 # ----------------------------------------------
678 # Per-package compiler flags
679
680 # If you want to add per-package compiler flags, this 
681 # is the place to do it.  Do it like this for package <pkg>
682 #   
683 #   libraries/<pkg>_dist-boot_HC_OPTS += -Wwarn
684 #   libraries/<pkg>_dist-install_HC_OPTS += -Wwarn
685
686 # Add $(GhcLibHcOpts) to all package builds
687 $(foreach pkg,$(PACKAGES) $(PACKAGES_STAGE2),$(eval libraries/$(pkg)_dist-install_HC_OPTS += $$(GhcLibHcOpts)))
688
689 # Add $(GhcBootLibHcOpts) to all stage0 package builds
690 $(foreach pkg,$(STAGE0_PACKAGES),$(eval libraries/$(pkg)_dist-boot_HC_OPTS += $$(GhcBootLibHcOpts)))
691
692 # -----------------------------------------------
693 # Haddock-related bits
694
695 # Don't run Haddock for the package that will not be installed
696 $(foreach p,$(INTREE_ONLY_PACKAGES),$(eval libraries/$p_dist-install_DO_HADDOCK = NO))
697 # We don't haddock the bootstrapping libraries
698 $(foreach p,$(STAGE0_PACKAGES),$(eval libraries/$p_dist-boot_DO_HADDOCK = NO))
699
700 # Build the Haddock contents and index
701 ifeq "$(HADDOCK_DOCS)" "YES"
702 libraries/index.html: inplace/bin/haddock $(ALL_HADDOCK_FILES)
703         cd libraries && sh gen_contents_index --inplace
704 ifeq "$(phase)" ""
705 $(eval $(call all-target,library_doc_index,libraries/index.html))
706 endif
707 INSTALL_LIBRARY_DOCS += libraries/*.html libraries/*.gif libraries/*.css libraries/*.js
708 CLEAN_FILES += libraries/doc-index* libraries/haddock*.css \
709                libraries/haddock*.js libraries/index*.html libraries/*.gif
710 endif
711
712 # -----------------------------------------------------------------------------
713 # Bootstrapping libraries
714
715 # We need to build a few libraries with the installed GHC, since GHC itself
716 # and some of the tools depend on them:
717
718 ifneq "$(BINDIST)" "YES"
719
720 ifneq "$(BOOTSTRAPPING_CONF)" ""
721 ifeq "$(wildcard $(BOOTSTRAPPING_CONF))" ""
722 $(shell echo "[]" >$(BOOTSTRAPPING_CONF))
723 endif
724 endif
725
726 $(eval $(call clean-target,$(BOOTSTRAPPING_CONF),,$(BOOTSTRAPPING_CONF)))
727
728 # These three libraries do not depend on each other, so we can build
729 # them straight off:
730
731 $(eval $(call build-package,libraries/hpc,dist-boot,0))
732 $(eval $(call build-package,libraries/extensible-exceptions,dist-boot,0))
733 $(eval $(call build-package,libraries/Cabal,dist-boot,0))
734 $(eval $(call build-package,libraries/binary,dist-boot,0))
735 $(eval $(call build-package,libraries/bin-package-db,dist-boot,0))
736
737 # register the boot packages in strict sequence, because running
738 # multiple ghc-pkgs in parallel doesn't work (registrations may get
739 # lost).
740 fixed_pkg_prev=
741 $(foreach pkg,$(STAGE0_PACKAGES),$(eval $(call fixed_pkg_dep,$(pkg),dist-boot)))
742
743 compiler/stage1/package-data.mk : $(fixed_pkg_prev)
744
745 # Make sure we have all the GHCi libs by the time we've built
746 # ghc-stage2.  DPH includes a bit of Template Haskell which needs the
747 # GHCI libs, and we don't have a better way to express that dependency.
748 #
749 GHCI_LIBS = $(foreach lib,$(PACKAGES),$(libraries/$(lib)_dist-install_GHCI_LIB)) \
750             $(compiler_stage2_GHCI_LIB)
751
752 ifeq "$(UseArchivesForGhci)" "NO"
753 ghc/stage2/build/tmp/$(ghc_stage2_PROG) : $(GHCI_LIBS)
754 endif
755
756 ifeq "$(UseArchivesForGhci)" "YES"
757 GHCI_lib_way = v
758 else
759 GHCI_lib_way = GHCI
760 endif
761
762 # Deps for TH uses in libraries
763 $(foreach way, $(GhcLibWays),$(eval \
764 libraries/vector/dist-install/build/Data/Vector/Fusion/Stream/Monadic.$($(way)_osuf): \
765     $(libraries/primitive_dist-install_$(GHCI_lib_way)_LIB) \
766   ))
767 endif
768
769 # -----------------------------------------------------------------------------
770 # Creating a local mingw copy on Windows
771
772 ifeq "$(Windows)" "YES"
773
774 install : install_mingw
775 .PHONY: install_mingw
776 install_mingw : $(INPLACE_MINGW)
777         "$(CP)" -Rp $(INPLACE_MINGW) $(prefix)
778
779 install : install_perl
780 .PHONY: install_perl
781 install_perl : $(INPLACE_PERL)
782         "$(CP)" -Rp $(INPLACE_PERL) $(prefix)
783
784 endif # Windows
785
786 ifneq "$(BINDIST)" "YES"
787 $(ghc-prim-$(libraries/ghc-prim_dist-install_VERSION)_HADDOCK_FILE): \
788     libraries/ghc-prim/dist-install/build/autogen/GHC/Prim.hs
789 endif # BINDIST
790
791 libraries/ghc-prim/dist-install/build/autogen/GHC/Prim.hs: \
792                             $(PRIMOPS_TXT) $(GENPRIMOP_INPLACE) \
793                           | $$(dir $$@)/.
794         "$(GENPRIMOP_INPLACE)" --make-haskell-source < $< > $@
795
796 .PHONY: tags
797 tags: tags_compiler
798
799 .PHONY: TAGS
800 TAGS: TAGS_compiler
801
802 # -----------------------------------------------------------------------------
803 # Installation
804
805 install: install_packages install_libs install_libexecs install_headers \
806          install_libexec_scripts install_bins install_topdirs
807 ifeq "$(HADDOCK_DOCS)" "YES"
808 install: install_docs
809 endif
810
811 install_bins: $(INSTALL_BINS)
812         $(call INSTALL_DIR,"$(DESTDIR)$(bindir)")
813         for i in $(INSTALL_BINS); do \
814                 $(call INSTALL_PROGRAM,$(INSTALL_BIN_OPTS),$$i,"$(DESTDIR)$(bindir)") ;  \
815         done
816
817 install_libs: $(INSTALL_LIBS)
818         $(call INSTALL_DIR,"$(DESTDIR)$(ghclibdir)")
819         for i in $(INSTALL_LIBS); do \
820                 case $$i in \
821                   *.a) \
822                     $(call INSTALL_DATA,$(INSTALL_OPTS),$$i,"$(DESTDIR)$(ghclibdir)"); \
823                     $(RANLIB) $(DESTDIR)$(ghclibdir)/`basename $$i` ;; \
824                   *.dll) \
825                     $(call INSTALL_DATA,-s $(INSTALL_OPTS),$$i,"$(DESTDIR)$(ghclibdir)") ;; \
826                   *.so) \
827                     $(call INSTALL_SHLIB,$(INSTALL_OPTS),$$i,"$(DESTDIR)$(ghclibdir)") ;; \
828                   *.dylib) \
829                     $(call INSTALL_SHLIB,$(INSTALL_OPTS),$$i,"$(DESTDIR)$(ghclibdir)");; \
830                   *) \
831                     $(call INSTALL_DATA,$(INSTALL_OPTS),$$i,"$(DESTDIR)$(ghclibdir)"); \
832                 esac; \
833         done
834
835 install_libexec_scripts: $(INSTALL_LIBEXEC_SCRIPTS)
836 ifeq "$(INSTALL_LIBEXEC_SCRIPTS)" ""
837         @:
838 else
839         $(call INSTALL_DIR,"$(DESTDIR)$(ghclibexecdir)")
840         for i in $(INSTALL_LIBEXEC_SCRIPTS); do \
841                 $(call INSTALL_SCRIPT,$(INSTALL_OPTS),$$i,"$(DESTDIR)$(ghclibexecdir)"); \
842         done
843 endif
844
845 install_libexecs:  $(INSTALL_LIBEXECS)
846 ifeq "$(INSTALL_LIBEXECS)" ""
847         @:
848 else
849         $(call INSTALL_DIR,"$(DESTDIR)$(ghclibexecdir)")
850         for i in $(INSTALL_LIBEXECS); do \
851                 $(call INSTALL_PROGRAM,$(INSTALL_BIN_OPTS),$$i,"$(DESTDIR)$(ghclibexecdir)"); \
852         done
853 # We rename ghc-stage2, so that the right program name is used in error
854 # messages etc.
855         "$(MV)" "$(DESTDIR)$(ghclibexecdir)/ghc-stage2" "$(DESTDIR)$(ghclibexecdir)/ghc"
856 endif
857
858 install_topdirs: $(INSTALL_TOPDIRS)
859         $(call INSTALL_DIR,"$(DESTDIR)$(topdir)")
860         for i in $(INSTALL_TOPDIRS); do \
861                 $(call INSTALL_PROGRAM,$(INSTALL_BIN_OPTS),$$i,"$(DESTDIR)$(topdir)"); \
862         done
863
864 install_headers: $(INSTALL_HEADERS)
865         $(call INSTALL_DIR,"$(DESTDIR)$(ghcheaderdir)")
866         for i in $(INSTALL_HEADERS); do \
867                 $(call INSTALL_HEADER,$(INSTALL_OPTS),$$i,"$(DESTDIR)$(ghcheaderdir)"); \
868         done
869
870 install_docs: $(INSTALL_DOCS)
871         $(call INSTALL_DIR,"$(DESTDIR)$(docdir)")
872 ifneq "$(INSTALL_DOCS)" ""
873         for i in $(INSTALL_DOCS); do \
874                 $(call INSTALL_DOC,$(INSTALL_OPTS),$$i,"$(DESTDIR)$(docdir)"); \
875         done
876 endif
877         $(call INSTALL_DIR,"$(DESTDIR)$(docdir)/html")
878         $(call INSTALL_DOC,$(INSTALL_OPTS),docs/index.html,"$(DESTDIR)$(docdir)/html")
879 ifneq "$(INSTALL_LIBRARY_DOCS)" ""
880         $(call INSTALL_DIR,"$(DESTDIR)$(docdir)/html/libraries")
881         for i in $(INSTALL_LIBRARY_DOCS); do \
882                 $(call INSTALL_DOC,$(INSTALL_OPTS),$$i,"$(DESTDIR)$(docdir)/html/libraries/"); \
883         done
884         $(call INSTALL_DATA,$(INSTALL_OPTS),libraries/prologue.txt,"$(DESTDIR)$(docdir)/html/libraries/")
885         $(call INSTALL_SCRIPT,$(INSTALL_OPTS),libraries/gen_contents_index,"$(DESTDIR)$(docdir)/html/libraries/")
886 endif
887 ifneq "$(INSTALL_HTML_DOC_DIRS)" ""
888         for i in $(INSTALL_HTML_DOC_DIRS); do \
889                 $(call INSTALL_DIR,"$(DESTDIR)$(docdir)/html/`basename $$i`"); \
890                 $(call INSTALL_DOC,$(INSTALL_OPTS),$$i/*,"$(DESTDIR)$(docdir)/html/`basename $$i`"); \
891         done
892 endif
893
894 INSTALLED_PACKAGE_CONF=$(DESTDIR)$(topdir)/package.conf.d
895
896 # Install packages in the right order, so that ghc-pkg doesn't complain.
897 # Also, install ghc-pkg first.
898 ifeq "$(Windows)" "NO"
899 INSTALLED_GHC_REAL=$(DESTDIR)$(ghclibexecdir)/ghc
900 INSTALLED_GHC_PKG_REAL=$(DESTDIR)$(ghclibexecdir)/ghc-pkg
901 else
902 INSTALLED_GHC_REAL=$(DESTDIR)$(bindir)/ghc.exe
903 INSTALLED_GHC_PKG_REAL=$(DESTDIR)$(bindir)/ghc-pkg.exe
904 endif
905
906 INSTALLED_PKG_DIRS := $(addprefix libraries/,$(PACKAGES)) \
907                       compiler \
908                       $(addprefix libraries/,$(PACKAGES_STAGE2))
909 ifeq "$(InstallExtraPackages)" "NO"
910 INSTALLED_PKG_DIRS := $(filter-out $(addprefix libraries/,$(EXTRA_PACKAGES)),\
911                                    $(INSTALLED_PKG_DIRS))
912 endif
913 INSTALLED_PKG_DIRS := $(filter-out $(addprefix libraries/,$(INTREE_ONLY_PACKAGES)),\
914                                    $(INSTALLED_PKG_DIRS))
915
916 # Set the INSTALL_DISTDIR_p for each package; compiler is special
917 $(foreach p,$(filter-out compiler,$(INSTALLED_PKG_DIRS)),\
918    $(eval INSTALL_DISTDIR_$p = dist-install))
919 INSTALL_DISTDIR_compiler = stage2
920
921 # Now we can do the installation
922 install_packages: install_libexecs
923 install_packages: libffi/package.conf.install rts/package.conf.install
924         $(call INSTALL_DIR,"$(DESTDIR)$(topdir)")
925         "$(RM)" $(RM_OPTS_REC) "$(INSTALLED_PACKAGE_CONF)"
926         $(call INSTALL_DIR,"$(INSTALLED_PACKAGE_CONF)")
927         "$(INSTALLED_GHC_PKG_REAL)" --force --global-conf "$(INSTALLED_PACKAGE_CONF)" update libffi/package.conf.install
928         "$(INSTALLED_GHC_PKG_REAL)" --force --global-conf "$(INSTALLED_PACKAGE_CONF)" update rts/package.conf.install
929         $(foreach p, $(INSTALLED_PKG_DIRS),                           \
930             $(call make-command,                                      \
931                    "$(GHC_CABAL_INPLACE)" install                     \
932                                           "$(INSTALLED_GHC_REAL)"     \
933                                           "$(INSTALLED_GHC_PKG_REAL)" \
934                                           "$(STRIP_CMD)"              \
935                                           "$(DESTDIR)$(topdir)"       \
936                                           $p $(INSTALL_DISTDIR_$p)    \
937                                           '$(DESTDIR)'                \
938                                           '$(prefix)'                 \
939                                           '$(ghclibdir)'              \
940                                           '$(docdir)/html/libraries'  \
941                                           $(RelocatableBuild)))
942         $(foreach p, $(HIDDEN_PACKAGES),                                   \
943             $(call make-command,                                           \
944                    "$(INSTALLED_GHC_PKG_REAL)"                             \
945                        --global-conf "$(INSTALLED_PACKAGE_CONF)" hide $p))
946
947 # -----------------------------------------------------------------------------
948 # Binary distributions
949
950 ifneq "$(CLEANING)" "YES"
951 # This rule seems to hold some files open on Windows which prevents
952 # cleaning, perhaps due to the $(wildcard).
953
954 $(eval $(call bindist,.,\
955     LICENSE \
956     README \
957     INSTALL \
958     configure config.sub config.guess install-sh \
959     extra-gcc-opts.in \
960     packages \
961     Makefile \
962     mk/config.mk.in \
963     $(INPLACE_BIN)/mkdirhier \
964     utils/ghc-cabal/dist-install/build/tmp/ghc-cabal \
965     utils/ghc-pwd/dist/build/tmp/ghc-pwd \
966     $(BINDIST_WRAPPERS) \
967     $(BINDIST_PERL_SOURCES) \
968     $(BINDIST_LIBS) \
969     $(BINDIST_HI) \
970     $(BINDIST_EXTRAS) \
971     $(includes_H_CONFIG) \
972     $(includes_H_PLATFORM) \
973     $(includes_H_FILES) \
974     includes/ghcconfig.h \
975     includes/rts/Config.h \
976     $(INSTALL_HEADERS) \
977     $(INSTALL_LIBEXECS) \
978     $(INSTALL_LIBEXEC_SCRIPTS) \
979     $(INSTALL_TOPDIRS) \
980     $(INSTALL_BINS) \
981     $(INSTALL_MANPAGES) \
982     $(INSTALL_DOCS) \
983     $(INSTALL_LIBRARY_DOCS) \
984     $(addsuffix /*,$(INSTALL_HTML_DOC_DIRS)) \
985     docs/index.html \
986     compiler/stage2/doc \
987     $(wildcard libraries/*/dist-install/doc/) \
988     $(wildcard libraries/*/*/dist-install/doc/) \
989     $(filter-out extra-gcc-opts,$(INSTALL_LIBS)) \
990     $(filter-out %/project.mk mk/config.mk %/mk/install.mk,$(MAKEFILE_LIST)) \
991     mk/project.mk \
992     mk/install.mk.in \
993     bindist.mk \
994     libraries/gen_contents_index \
995     libraries/prologue.txt \
996     $(wildcard libraries/dph/LICENSE \
997                libraries/dph/ghc-packages \
998                libraries/dph/ghc-packages2 \
999                libraries/dph/ghc-stage2-package) \
1000  ))
1001 endif
1002 # mk/project.mk gets an absolute path, so we manually include it in
1003 # the bindist with a relative path
1004
1005 BIN_DIST_MK = $(BIN_DIST_PREP_DIR)/bindist.mk
1006
1007 unix-binary-dist-prep:
1008         "$(RM)" $(RM_OPTS_REC) bindistprep/
1009         "$(MKDIRHIER)" $(BIN_DIST_PREP_DIR)
1010         set -e; for i in packages LICENSE compiler ghc rts libraries utils docs libffi includes driver mk rules Makefile aclocal.m4 config.sub config.guess install-sh extra-gcc-opts.in ghc.mk inplace distrib/configure.ac distrib/README distrib/INSTALL; do ln -s ../../$$i $(BIN_DIST_PREP_DIR)/; done
1011         echo "HADDOCK_DOCS       = $(HADDOCK_DOCS)"       >> $(BIN_DIST_MK)
1012         echo "LATEX_DOCS         = $(LATEX_DOCS)"         >> $(BIN_DIST_MK)
1013         echo "BUILD_DOCBOOK_HTML = $(BUILD_DOCBOOK_HTML)" >> $(BIN_DIST_MK)
1014         echo "BUILD_DOCBOOK_PS   = $(BUILD_DOCBOOK_PS)"   >> $(BIN_DIST_MK)
1015         echo "BUILD_DOCBOOK_PDF  = $(BUILD_DOCBOOK_PDF)"  >> $(BIN_DIST_MK)
1016         echo "BUILD_MAN          = $(BUILD_MAN)"          >> $(BIN_DIST_MK)
1017         echo "GHC_CABAL_INPLACE  = utils/ghc-cabal/dist-install/build/tmp/ghc-cabal" >> $(BIN_DIST_MK)
1018         cd $(BIN_DIST_PREP_DIR) && autoreconf
1019         "$(RM)" $(RM_OPTS) $(BIN_DIST_PREP_TAR)
1020 # h means "follow symlinks", e.g. if aclocal.m4 is a symlink to a source
1021 # tree then we want to include the real file, not a symlink to it
1022         cd bindistprep && "$(TAR_CMD)" hcf - -T ../$(BIN_DIST_LIST) | bzip2 -c > ../$(BIN_DIST_PREP_TAR_BZ2)
1023
1024 windows-binary-dist-prep:
1025         "$(RM)" $(RM_OPTS_REC) bindistprep/
1026         $(MAKE) prefix=$(TOP)/$(BIN_DIST_PREP_DIR) install
1027         cd bindistprep && "$(TAR_CMD)" cf - $(BIN_DIST_NAME) | bzip2 -c > ../$(BIN_DIST_PREP_TAR_BZ2)
1028
1029 windows-installer:
1030 ifeq "$(ISCC_CMD)" ""
1031         @echo No ISCC_CMD, so not making installer
1032 else
1033         "$(ISCC_CMD)" /O. /Fbindistprep/$(WINDOWS_INSTALLER_BASE) - < distrib/ghc.iss
1034 endif
1035
1036 # tryTimes tries to run its third argument multiple times, until it
1037 # succeeds. Don't call it directly; call try10Times instead.
1038 # The first and second argument to tryTimes are lists of values.
1039 # The length of the first argument is the number of times we have
1040 # already tried. The length of the second argument is the number more
1041 # times we will try.
1042 tryTimes = $(if $2, \
1043                 { echo 'Try $(words x $1): $3' ; $3 ; } || \
1044                 $(call tryTimes,x $1,$(wordlist 2,$(words $2),$2),$3), \
1045                 )
1046
1047 # Try to run the argument 10 times. If all 10 fail, fail.
1048 try10Times = $(call tryTimes,,x x x x x x x x x x,$1) { echo Failed; false; }
1049
1050 .PHONY: publish-binary-dist
1051 publish-binary-dist:
1052         $(call try10Times,$(PublishCp) $(BIN_DIST_TAR_BZ2) $(PublishLocation)/dist)
1053 ifeq "$(mingw32_TARGET_OS)" "1"
1054         $(call try10Times,$(PublishCp) $(WINDOWS_INSTALLER) $(PublishLocation)/dist)
1055 endif
1056
1057 ifeq "$(mingw32_TARGET_OS)" "1"
1058 DOCDIR_TO_PUBLISH = bindisttest/"install dir"/doc
1059 else
1060 DOCDIR_TO_PUBLISH = bindisttest/"install dir"/share/doc/ghc
1061 endif
1062
1063 .PHONY: publish-docs
1064 publish-docs:
1065         $(call try10Times,$(PublishCp) -r $(DOCDIR_TO_PUBLISH)/* $(PublishLocation)/docs)
1066
1067 # -----------------------------------------------------------------------------
1068 # Source distributions
1069
1070 # Do it like this:
1071 #
1072 #       $ make
1073 #       $ make sdist
1074 #
1075
1076 # A source dist is built from a complete build tree, because we
1077 # require some extra files not contained in a darcs checkout: the
1078 # output from Happy and Alex, for example.
1079 #
1080 # The steps performed by 'make dist' are as follows:
1081 #   - create a complete link-tree of the current build tree in /tmp
1082 #   - run 'make distclean' on that tree
1083 #   - remove a bunch of other files that we know shouldn't be in the dist
1084 #   - tar up first the extralibs package, then the main source package
1085
1086 #
1087 # Directory in which we're going to build the src dist
1088 #
1089 SRC_DIST_NAME=ghc-$(ProjectVersion)
1090 SRC_DIST_DIR=$(TOP)/$(SRC_DIST_NAME)
1091
1092 #
1093 # Files to include in source distributions
1094 #
1095 SRC_DIST_DIRS = mk rules docs distrib bindisttest libffi includes utils docs rts compiler ghc driver libraries ghc-tarballs
1096 SRC_DIST_FILES += \
1097         configure.ac config.guess config.sub configure \
1098         aclocal.m4 README ANNOUNCE HACKING LICENSE Makefile install-sh \
1099         ghc.spec.in ghc.spec extra-gcc-opts.in VERSION \
1100         boot boot-pkgs packages ghc.mk
1101
1102 SRC_DIST_TARBALL = $(SRC_DIST_NAME)-src.tar.bz2
1103
1104 VERSION :
1105         echo $(ProjectVersion) >VERSION
1106
1107 sdist : VERSION
1108
1109 # Use:
1110 #     $(call sdist_file,compiler,stage2,cmm,Foo/Bar,CmmLex,x)
1111 # to copy the generated file that replaces compiler/cmm/Foo/Bar/CmmLex.x, where
1112 # "stage2" is the dist dir.
1113 define sdist_file
1114         "$(CP)" $1/$2/build/$4/$5.hs $(SRC_DIST_DIR)/$1/$3/$4
1115         mv $(SRC_DIST_DIR)/$1/$3/$4/$5.$6 $(SRC_DIST_DIR)/$1/$3/$4/$5.$6.source
1116 endef
1117
1118 .PHONY: sdist-prep
1119 sdist-prep :
1120         "$(RM)" $(RM_OPTS_REC) $(SRC_DIST_DIR)
1121         "$(RM)" $(RM_OPTS) $(SRC_DIST_TARBALL)
1122         mkdir $(SRC_DIST_DIR)
1123         cd $(SRC_DIST_DIR) && for i in $(SRC_DIST_DIRS); do mkdir $$i; ( cd $$i && lndir $(TOP)/$$i ); done
1124         cd $(SRC_DIST_DIR) && for i in $(SRC_DIST_FILES); do $(LN_S) $(TOP)/$$i .; done
1125         cd $(SRC_DIST_DIR) && $(MAKE) distclean
1126         rm -rf $(SRC_DIST_DIR)/libraries/tarballs/
1127         rm -rf $(SRC_DIST_DIR)/libraries/stamp/
1128         $(call sdist_file,compiler,stage2,cmm,,CmmLex,x)
1129         $(call sdist_file,compiler,stage2,cmm,,CmmParse,y)
1130         $(call sdist_file,compiler,stage2,parser,,Lexer,x)
1131         $(call sdist_file,compiler,stage2,parser,,Parser,y.pp)
1132         $(call sdist_file,compiler,stage2,parser,,ParserCore,y)
1133         $(call sdist_file,utils/hpc,dist,,,HpcParser,y)
1134         $(call sdist_file,utils/genprimopcode,dist,,,Lexer,x)
1135         $(call sdist_file,utils/genprimopcode,dist,,,Parser,y)
1136         $(call sdist_file,utils/haddock,dist,src,Haddock,Lex,x)
1137         $(call sdist_file,utils/haddock,dist,src,Haddock,Parse,y)
1138         cd $(SRC_DIST_DIR) && "$(RM)" $(RM_OPTS_REC) compiler/stage[123] mk/build.mk
1139         cd $(SRC_DIST_DIR) && "$(FIND)" $(SRC_DIST_DIRS) \( -name _darcs -o -name SRC -o -name "autom4te*" -o -name "*~" -o -name ".cvsignore" -o -name "\#*" -o -name ".\#*" -o -name "log" -o -name "*-SAVE" -o -name "*.orig" -o -name "*.rej" -o -name "*-darcs-backup*" \) -print | "$(XARGS)" $(XARGS_OPTS) "$(RM)" $(RM_OPTS_REC)
1140
1141 .PHONY: sdist
1142 sdist : sdist-prep
1143         "$(TAR_CMD)" chf - $(SRC_DIST_NAME) 2>$src_log | bzip2 >$(TOP)/$(SRC_DIST_TARBALL)
1144
1145 sdist-manifest : $(SRC_DIST_TARBALL)
1146         tar tjf $(SRC_DIST_TARBALL) | sed "s|^ghc-$(ProjectVersion)/||" | sort >sdist-manifest
1147
1148 # Upload the distribution(s)
1149 # Retrying is to work around buggy firewalls that corrupt large file transfers
1150 # over SSH.
1151 ifneq "$(PublishLocation)" ""
1152 publish-sdist :
1153         $(call try10Times,$(PublishCp) $(SRC_DIST_TARBALL) $(PublishLocation)/dist)
1154 endif
1155
1156 ifeq "$(BootingFromHc)" "YES"
1157 # In a normal build we use GHC to compile C files (see
1158 # rules/c-suffix-rules.mk), which passes a number of its own options
1159 # to the C compiler.  So when bootstrapping we have to provide these
1160 # flags explicitly to C compilations.
1161 SRC_CC_OPTS += -DNO_REGS -DUSE_MINIINTERPRETER
1162 SRC_CC_OPTS += -D__GLASGOW_HASKELL__=$(ProjectVersionInt)
1163 SRC_CC_OPTS += -I$(GHC_INCLUDE_DIR)
1164 endif
1165
1166 # -----------------------------------------------------------------------------
1167 # sdisting libraries
1168
1169 # Use manually, with e.g.:
1170 #     make sdist_directory
1171
1172 sdist_%:
1173         inplace/bin/ghc-cabal sdist libraries/$* dist-install
1174
1175 # -----------------------------------------------------------------------------
1176 # Cleaning
1177
1178 .PHONY: clean
1179
1180 CLEAN_FILES += libraries/bootstrapping.conf
1181 CLEAN_FILES += libraries/integer-gmp/cbits/GmpDerivedConstants.h
1182 CLEAN_FILES += libraries/integer-gmp/cbits/mkGmpDerivedConstants
1183
1184 clean : clean_files clean_libraries
1185
1186 .PHONY: clean_files
1187 clean_files :
1188         "$(RM)" $(RM_OPTS) $(CLEAN_FILES)
1189
1190 ifneq "$(NO_CLEAN_GMP)" "YES"
1191 CLEAN_FILES += libraries/integer-gmp/gmp/gmp.h
1192 CLEAN_FILES += libraries/integer-gmp/gmp/libgmp.a
1193
1194 clean : clean_gmp
1195 .PHONY: clean_gmp
1196 clean_gmp:
1197         "$(RM)" $(RM_OPTS_REC) libraries/integer-gmp/gmp/objs
1198         "$(RM)" $(RM_OPTS_REC) libraries/integer-gmp/gmp/gmpbuild
1199 endif
1200
1201 .PHONY: clean_libraries
1202 clean_libraries: $(patsubst %,clean_libraries/%_dist-install,$(PACKAGES) $(PACKAGES_STAGE2))
1203 clean_libraries: $(patsubst %,clean_libraries/%_dist-boot,$(STAGE0_PACKAGES))
1204
1205 clean_libraries:
1206         "$(RM)" $(RM_OPTS_REC) $(patsubst %, libraries/%/dist, $(PACKAGES) $(PACKAGES_STAGE2))
1207         "$(RM)" $(RM_OPTS) $(patsubst %, libraries/%/*.buildinfo, $(PACKAGES) $(PACKAGES_STAGE2))
1208
1209 # We have to define a clean target for each library manually, because the
1210 # libraries/*/ghc.mk files are not included when we're cleaning.
1211 ifeq "$(CLEANING)" "YES"
1212 $(foreach lib,$(PACKAGES) $(PACKAGES_STAGE2),\
1213   $(eval $(call clean-target,libraries/$(lib),dist-install,libraries/$(lib)/dist-install)))
1214 endif
1215
1216 clean : clean_bindistprep
1217 .PHONY: clean_bindistprep
1218 clean_bindistprep:
1219         "$(RM)" $(RM_OPTS_REC) bindistprep/
1220
1221 distclean : clean
1222         "$(RM)" $(RM_OPTS) config.cache config.status config.log mk/config.h mk/stamp-h
1223         "$(RM)" $(RM_OPTS) mk/config.mk mk/are-validating.mk mk/project.mk
1224         "$(RM)" $(RM_OPTS) mk/config.mk.old mk/project.mk.old
1225         "$(RM)" $(RM_OPTS) extra-gcc-opts docs/users_guide/ug-book.xml
1226         "$(RM)" $(RM_OPTS) compiler/ghc.cabal compiler/ghc.cabal.old
1227         "$(RM)" $(RM_OPTS) ghc/ghc-bin.cabal
1228         "$(RM)" $(RM_OPTS) libraries/base/include/HsBaseConfig.h
1229         "$(RM)" $(RM_OPTS) libraries/directory/include/HsDirectoryConfig.h
1230         "$(RM)" $(RM_OPTS) libraries/process/include/HsProcessConfig.h
1231         "$(RM)" $(RM_OPTS) libraries/unix/include/HsUnixConfig.h
1232         "$(RM)" $(RM_OPTS) libraries/old-time/include/HsTimeConfig.h
1233         "$(RM)" $(RM_OPTS_REC) utils/ghc-pwd/dist
1234         "$(RM)" $(RM_OPTS_REC) inplace
1235
1236         "$(RM)" $(RM_OPTS) $(patsubst %, libraries/%/config.log, $(PACKAGES) $(PACKAGES_STAGE2))
1237         "$(RM)" $(RM_OPTS) $(patsubst %, libraries/%/config.status, $(PACKAGES) $(PACKAGES_STAGE2))
1238         "$(RM)" $(RM_OPTS) $(patsubst %, libraries/%/include/Hs*Config.h, $(PACKAGES) $(PACKAGES_STAGE2))
1239         "$(RM)" $(RM_OPTS_REC) $(patsubst %, libraries/%/autom4te.cache, $(PACKAGES) $(PACKAGES_STAGE2))
1240
1241 maintainer-clean : distclean
1242         "$(RM)" $(RM_OPTS) configure mk/config.h.in
1243         "$(RM)" $(RM_OPTS_REC) autom4te.cache libraries/*/autom4te.cache
1244         "$(RM)" $(RM_OPTS) ghc.spec
1245         "$(RM)" $(RM_OPTS) $(patsubst %, libraries/%/GNUmakefile, \
1246                 $(PACKAGES) $(PACKAGES_STAGE2))
1247         "$(RM)" $(RM_OPTS) $(patsubst %, libraries/%/ghc.mk, $(PACKAGES) $(PACKAGES_STAGE2))
1248         "$(RM)" $(RM_OPTS) $(patsubst %, libraries/%/configure, \
1249                 $(PACKAGES) $(PACKAGES_STAGE2))
1250         "$(RM)" $(RM_OPTS) libraries/base/include/HsBaseConfig.h.in
1251         "$(RM)" $(RM_OPTS) libraries/directory/include/HsDirectoryConfig.h.in
1252         "$(RM)" $(RM_OPTS) libraries/process/include/HsProcessConfig.h.in
1253         "$(RM)" $(RM_OPTS) libraries/unix/include/HsUnixConfig.h.in
1254         "$(RM)" $(RM_OPTS) libraries/old-time/include/HsTimeConfig.h.in
1255
1256 .PHONY: all_libraries
1257
1258 .PHONY: bootstrapping-files
1259 bootstrapping-files: $(OTHER_LIBS)
1260 bootstrapping-files: includes/ghcautoconf.h
1261 bootstrapping-files: includes/DerivedConstants.h
1262 bootstrapping-files: includes/GHCConstants.h
1263
1264 .DELETE_ON_ERROR:
1265