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