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