Include DPH docs in bindists
[ghc-hetmet.git] / ghc.mk
1 # -----------------------------------------------------------------------------
2 #
3 # (c) 2009 The University of Glasgow
4 #
5 # This file is part of the GHC build system.
6 #
7 # To understand how the build system works and how to modify it, see
8 #      http://hackage.haskell.org/trac/ghc/wiki/Building/Architecture
9 #      http://hackage.haskell.org/trac/ghc/wiki/Building/Modifying
10 #
11 # -----------------------------------------------------------------------------
12
13 # ToDo List.
14 #
15 #   * finish installation
16 #     * Windows: should we have ghc-pkg-<version>?
17 #     * should we be stripping things?
18 #     * install libgmp.a, gmp.h
19 #   * need to fix Cabal for new Windows layout, see
20 #     Distribution/Simple/GHC.configureToolchain.
21 #   * remove old Makefiles, add new stubs for building in subdirs
22 #     * docs/Makefile
23 #     * docs/docbook-cheat-sheet/Makefile
24 #     * docs/ext-core/Makefile
25 #     * docs/man/Makefile
26 #     * docs/storage-mgmt/Makefile
27 #     * docs/vh/Makefile
28 #     * rts/dotnet/Makefile
29 #     * utils/Makefile
30 #   * optionally install stage3?
31 #   * add Makefiles for the rest of the utils/ programs that aren't built
32 #     by default (need to exclude them from 'make all' too)
33 #
34 # Tickets we can now close, or fix and close:
35 #
36 #   * 1693 make distclean
37
38 # Possible cleanups:
39 #
40 #   * per-source-file dependencies instead of one .depend file?
41 #   * eliminate undefined variables, and use --warn-undefined-variables?
42 #   * put outputs from different ways in different subdirs of distdir/build,
43 #     then we don't have to use -osuf/-hisuf.  We would have to install
44 #     them in different places too, so we'd need ghc-pkg support for packages
45 #     of different ways.
46 #   * make PACKAGES generated by configure or sh boot?
47 #   * we should use a directory of package.conf files rather than a single
48 #     file for the inplace package database, so that we can express
49 #     dependencies more accurately.  Otherwise it's possible to get into
50 #     a state where the package database is out of date, and the build
51 #     system doesn't know.
52
53 # Approximate build order.
54 #
55 # The actual build order is defined by dependencies, and the phase
56 # ordering used to ensure correct ordering of makefile-generation; see
57 #    http://hackage.haskell.org/trac/ghc/wiki/Building/Architecture/Idiom/PhaseOrdering
58 #
59 #     * With bootstrapping compiler:
60 #           o Build utils/ghc-cabal
61 #           o Build utils/ghc-pkg
62 #           o Build utils/hsc2hs
63 #     * For each package:
64 #           o configure, generate package-data.mk and inplace-pkg-info
65 #           o register each package into inplace/lib/package.conf
66 #     * build libffi
67 #     * With bootstrapping compiler:
68 #           o Build libraries/{filepath,hpc,extensible-exceptions,Cabal}
69 #           o Build compiler (stage 1)
70 #     * With stage 1:
71 #           o Build libraries/*
72 #           o Build rts
73 #           o Build utils/* (except haddock)
74 #           o Build compiler (stage 2)
75 #     * With stage 2:
76 #           o Build utils/haddock
77 #           o Build compiler (stage 3) (optional)
78 #     * With haddock:
79 #           o libraries/*
80 #           o compiler
81
82 .PHONY: default all haddock
83
84 # We need second expansion for the way we handle directories, so that
85 #     | $$$$(dir $$$$@)/.
86 # expands to the directory of a rule that uses a % pattern.
87 .SECONDEXPANSION:
88
89 default : all
90
91 # Catch make if it runs away into an infinite loop
92 ifeq      "$(MAKE_RESTARTS)" ""
93 else ifeq "$(MAKE_RESTARTS)" "1"
94 else ifeq "$(MAKE_RESTARTS)" "2"
95 else
96 $(error Make has restarted itself $(MAKE_RESTARTS) times; is there a makefile bug?)
97 endif
98
99 # Just bring makefiles up to date:
100 .PHONY: just-makefiles
101 just-makefiles:
102         @:
103
104 # -----------------------------------------------------------------------------
105 # Misc GNU make utils
106
107 nothing=
108 space=$(nothing) $(nothing)
109 comma=,
110
111 # Cancel all suffix rules.  Ideally we'd like to have 'make -r' turned on
112 # by default, because that disables all the implicit rules, but there doesn't
113 # seem to be a good way to do that.  This turns off all the old-style suffix
114 # rules, which does half the job and speeds up make quite a bit:
115 .SUFFIXES:
116
117 # -----------------------------------------------------------------------------
118 #                       Makefile debugging
119 # to see the effective value used for a Makefile variable, do
120 #  make show VALUE=MY_VALUE
121 #
122
123 show:
124         @echo '$(VALUE)="$($(VALUE))"'
125
126 # -----------------------------------------------------------------------------
127 # Include subsidiary build-system bits
128
129 include mk/tree.mk
130
131 ifeq "$(findstring clean,$(MAKECMDGOALS))" ""
132 include mk/config.mk
133 ifeq "$(ProjectVersion)" ""
134 $(error Please run ./configure first)
135 endif
136 endif
137
138 include mk/ways.mk
139
140 # (Optional) build-specific configuration
141 include mk/custom-settings.mk
142
143 ifeq "$(findstring clean,$(MAKECMDGOALS))" ""
144 ifeq "$(GhcLibWays)" ""
145 $(error $$(GhcLibWays) is empty, it must contain at least one way)
146 endif
147 endif
148
149 # -----------------------------------------------------------------------------
150 # Macros for standard targets
151
152 include rules/all-target.mk
153 include rules/clean-target.mk
154
155 # -----------------------------------------------------------------------------
156 # The inplace tree
157
158 $(eval $(call clean-target,inplace,,inplace))
159
160 # -----------------------------------------------------------------------------
161 # Whether to build dependencies or not
162
163 # When we're just doing 'make clean' or 'make show', then we don't need
164 # to build dependencies.
165
166 ifneq "$(findstring clean,$(MAKECMDGOALS))" ""
167 NO_INCLUDE_DEPS = YES
168 NO_INCLUDE_PKGDATA = YES
169 endif
170 ifneq "$(findstring bootstrapping-files,$(MAKECMDGOALS))" ""
171 NO_INCLUDE_DEPS = YES
172 NO_INCLUDE_PKGDATA = YES
173 endif
174 ifeq "$(findstring show,$(MAKECMDGOALS))" "show"
175 NO_INCLUDE_DEPS = YES
176 # We want package-data.mk for show
177 endif
178
179 # We don't haddock the bootstrapping libraries
180 libraries/hpc_dist-boot_DO_HADDOCK = NO
181 libraries/Cabal_dist-boot_DO_HADDOCK = NO
182 libraries/extensible-exceptions_dist-boot_DO_HADDOCK = NO
183 libraries/filepath_dist-boot_DO_HADDOCK = NO
184 libraries/binary_dist-boot_DO_HADDOCK = NO
185 libraries/bin-package-db_dist-boot_DO_HADDOCK = NO
186
187 # -----------------------------------------------------------------------------
188 # Ways
189
190 include rules/way-prelims.mk
191
192 $(foreach way,$(ALL_WAYS),\
193   $(eval $(call way-prelims,$(way))))
194
195 # -----------------------------------------------------------------------------
196 # Compilation Flags
197
198 include rules/distdir-way-opts.mk
199
200 # -----------------------------------------------------------------------------
201 # Finding source files and object files
202
203 include rules/hs-sources.mk
204 include rules/c-sources.mk
205 include rules/includes-sources.mk
206 include rules/hs-objs.mk
207 include rules/c-objs.mk
208 include rules/cmm-objs.mk
209
210 # -----------------------------------------------------------------------------
211 # Suffix rules
212
213 # Suffix rules cause "make clean" to fail on Windows (trac #3233)
214 # so we don't make any when cleaning.
215 ifneq "$(CLEANING)" "YES"
216
217 include rules/hs-suffix-rules-srcdir.mk
218 include rules/hs-suffix-rules.mk
219
220 # -----------------------------------------------------------------------------
221 # Suffix rules for .hi files
222
223 include rules/hi-rule.mk
224
225 $(foreach way,$(ALL_WAYS),\
226   $(eval $(call hi-rule,$(way))))
227
228 #-----------------------------------------------------------------------------
229 # C-related suffix rules
230
231 include rules/c-suffix-rules.mk
232
233 #-----------------------------------------------------------------------------
234 # CMM-related suffix rules
235
236 include rules/cmm-suffix-rules.mk
237
238 endif
239
240 # -----------------------------------------------------------------------------
241 # Building package-data.mk files from .cabal files
242
243 include rules/package-config.mk
244
245 # -----------------------------------------------------------------------------
246 # Building dependencies
247
248 include rules/build-dependencies.mk
249
250 # -----------------------------------------------------------------------------
251 # Build package-data.mk files
252
253 include rules/build-package-data.mk
254
255 # -----------------------------------------------------------------------------
256 # Build and install a program
257
258 include rules/build-prog.mk
259 include rules/shell-wrapper.mk
260
261 # -----------------------------------------------------------------------------
262 # Build a perl script
263
264 include rules/build-perl.mk
265
266 # -----------------------------------------------------------------------------
267 # Build a package
268
269 include rules/build-package.mk
270 include rules/build-package-way.mk
271 include rules/haddock.mk
272 include rules/tags-package.mk
273
274 # -----------------------------------------------------------------------------
275 # Registering hand-written package descriptions (used in libffi and rts)
276
277 include rules/manual-package-config.mk
278
279 # -----------------------------------------------------------------------------
280 # Docs
281
282 include rules/docbook.mk
283
284 # -----------------------------------------------------------------------------
285 # Making bindists
286
287 include rules/bindist.mk
288
289 # -----------------------------------------------------------------------------
290 # Building libraries
291
292 define addPackage # args: $1 = package, $2 = condition
293     ifneq "$2" ""
294         ifeq "$$(CLEANING)" "YES"
295             PACKAGES += $1
296         else
297             ifeq $2
298                 PACKAGES += $1
299             endif
300         endif
301     else
302         PACKAGES += $1
303     endif
304 endef
305
306 $(eval $(call addPackage,ghc-prim))
307 ifeq "$(CLEANING)" "YES"
308 $(eval $(call addPackage,integer-gmp))
309 $(eval $(call addPackage,integer-simple))
310 else
311 $(eval $(call addPackage,$(INTEGER_LIBRARY)))
312 endif
313 $(eval $(call addPackage,base))
314 $(eval $(call addPackage,filepath))
315 $(eval $(call addPackage,array))
316 $(eval $(call addPackage,bytestring))
317 $(eval $(call addPackage,containers))
318
319 $(eval $(call addPackage,Win32,($$(Windows),YES)))
320 $(eval $(call addPackage,unix,($$(Windows),NO)))
321
322 $(eval $(call addPackage,old-locale))
323 $(eval $(call addPackage,old-time))
324 $(eval $(call addPackage,time))
325 $(eval $(call addPackage,directory))
326 $(eval $(call addPackage,process))
327 $(eval $(call addPackage,random))
328 $(eval $(call addPackage,extensible-exceptions))
329 $(eval $(call addPackage,haskell98))
330 $(eval $(call addPackage,hpc))
331 $(eval $(call addPackage,pretty))
332 $(eval $(call addPackage,template-haskell))
333 $(eval $(call addPackage,Cabal))
334 $(eval $(call addPackage,binary))
335 $(eval $(call addPackage,bin-package-db))
336 $(eval $(call addPackage,mtl))
337 $(eval $(call addPackage,utf8-string))
338
339 $(eval $(call addPackage,terminfo,($$(Windows),NO)))
340
341 $(eval $(call addPackage,haskeline))
342
343 $(foreach pkg,$(EXTRA_PACKAGES),$(eval $(call addPackage,$(pkg))))
344
345 ifneq "$(BootingFromHc)" "YES"
346 PACKAGES_STAGE2 += \
347         dph/dph-base \
348         dph/dph-prim-interface \
349         dph/dph-prim-seq \
350         dph/dph-prim-par \
351         dph/dph-seq \
352         dph/dph-par
353 endif
354
355 # We assume that the stage0 compiler has a suitable bytestring package,
356 # so we don't have to include it below.
357 BOOT_PKGS = Cabal hpc extensible-exceptions binary bin-package-db
358
359 # The actual .a and .so/.dll files: needed for dependencies.
360 ALL_STAGE1_LIBS  = $(foreach lib,$(PACKAGES),$(libraries/$(lib)_dist-install_v_LIB))
361 ifeq "$(BuildSharedLibs)" "YES"
362 ALL_STAGE1_LIBS += $(foreach lib,$(PACKAGES),$(libraries/$(lib)_dist-install_dyn_LIB))
363 endif
364 BOOT_LIBS = $(foreach lib,$(BOOT_PKGS),$(libraries/$(lib)_dist-boot_v_LIB))
365
366 OTHER_LIBS = libffi/dist-install/build/libHSffi$(v_libsuf) libffi/dist-install/build/HSffi.o
367 ifeq "$(BuildSharedLibs)" "YES"
368 OTHER_LIBS  += libffi/dist-install/build/libHSffi$(dyn_libsuf)
369 endif
370
371 # We cannot run ghc-cabal to configure a package until we have
372 # configured and registered all of its dependencies.  So the following
373 # hack forces all the configure steps to happen in exactly the following order:
374 #
375 #  $(PACKAGES) ghc(stage2) $(PACKAGES_STAGE2)
376 #
377 # Ideally we should use the correct dependencies here to allow more
378 # parallelism, but we don't know the dependencies until we've
379 # generated the pacakge-data.mk files.
380 define fixed_pkg_dep
381 libraries/$1/$2/package-data.mk : $$(GHC_PKG_INPLACE) $$(fixed_pkg_prev)
382 fixed_pkg_prev:=libraries/$1/$2/package-data.mk
383 endef
384
385 ifneq "$(BINDIST)" "YES"
386 fixed_pkg_prev=
387 $(foreach pkg,$(PACKAGES),$(eval $(call fixed_pkg_dep,$(pkg),dist-install)))
388
389 # the GHC package doesn't live in libraries/, so we add its dependency manually:
390 compiler/stage2/package-data.mk: $(fixed_pkg_prev)
391 fixed_pkg_prev:=compiler/stage2/package-data.mk
392
393 # and continue with PACKAGES_STAGE2, which depend on GHC:
394 $(foreach pkg,$(PACKAGES_STAGE2),$(eval $(call fixed_pkg_dep,$(pkg),dist-install)))
395
396 ghc/stage1/package-data.mk: compiler/stage1/package-data.mk
397 ghc/stage2/package-data.mk: compiler/stage2/package-data.mk
398 # haddock depends on ghc and some libraries, but depending on GHC's
399 # package-data.mk is sufficient, as that in turn depends on all the
400 # libraries
401 utils/haddock/dist/package-data.mk: compiler/stage2/package-data.mk
402
403 utils/hsc2hs/dist-install/package-data.mk: compiler/stage2/package-data.mk
404 utils/compare_sizes/dist/package-data.mk: compiler/stage2/package-data.mk
405
406 # add the final two package.conf dependencies: ghc-prim depends on RTS,
407 # and RTS depends on libffi.
408 libraries/ghc-prim/dist-install/package-data.mk : rts/package.conf.inplace
409 rts/package.conf.inplace : libffi/package.conf.inplace
410 endif
411
412 # -----------------------------------------------------------------------------
413 # Directories
414
415 # Don't try to delete directories:
416 .PRECIOUS: %/.
417
418 # Create build directories on demand.  NB. the | below: this indicates
419 # that $(MKDIRHIER) is an order-only dependency, which means that this
420 # rule fires after building mkdirhier, but we won't try to recreate
421 # directories if mkdirhier changes.
422 %/. : | $(MKDIRHIER)
423         "$(MKDIRHIER)" $@
424
425 # -----------------------------------------------------------------------------
426 # Special magic for the ghc-prim package
427
428 # We want the ghc-prim package to include the GHC.Prim module when it
429 # is registered, but not when it is built, because GHC.Prim is not a
430 # real source module, it is built-in to GHC.  The old build system did
431 # this using Setup.hs, but we can't do that here, so we have a flag to
432 # enable GHC.Prim in the .cabal file (so that the ghc-prim package
433 # remains compatible with the old build system for the time being).
434 # GHC.Prim module in the ghc-prim package with a flag:
435 #
436 libraries/ghc-prim_CONFIGURE_OPTS += --flag=include-ghc-prim
437
438 # And then we strip it out again before building the package:
439 define libraries/ghc-prim_PACKAGE_MAGIC
440 libraries/ghc-prim_dist-install_MODULES := $$(filter-out GHC.Prim,$$(libraries/ghc-prim_dist-install_MODULES))
441 endef
442
443 PRIMOPS_TXT = $(GHC_COMPILER_DIR)/prelude/primops.txt
444
445 libraries/ghc-prim/dist-install/build/GHC/PrimopWrappers.hs : $(GENPRIMOP_INPLACE) $(PRIMOPS_TXT) | $$(dir $$@)/.
446         "$(GENPRIMOP_INPLACE)" --make-haskell-wrappers <$(PRIMOPS_TXT) >$@
447
448 # Required so that Haddock documents the primops.
449 libraries/ghc-prim_dist-install_EXTRA_HADDOCK_SRCS = libraries/ghc-prim/dist-install/build/autogen/GHC/Prim.hs
450
451 # -----------------------------------------------------------------------------
452 # Include build instructions from all subdirs
453
454 # For the rationale behind the build phases, see
455 #   http://hackage.haskell.org/trac/ghc/wiki/Building/Architecture/Idiom/PhaseOrdering
456
457 # Setting foo_dist_DISABLE=YES means "in directory foo, for build
458 # "dist", just read the package-data.mk file, do not build anything".
459
460 # We carefully engineer things so that we can build the
461 # package-data.mk files early on: they depend only on a few tools also
462 # built early.  Having got the package-data.mk files built, we can
463 # restart make with up-to-date information about all the packages
464 # (this is phase 0).  The remaining problem is the .depend files:
465 #
466 #   - .depend files in libraries need the stage 1 compiler to build
467 #   - ghc/stage1/.depend needs compiler/stage1 built
468 #   - compiler/stage1/.depend needs the bootstrap libs built
469 #
470 # GHC 6.11+ can build a .depend file without having built the
471 # dependencies of the package, but we can't rely on the bootstrapping
472 # compiler being able to do this, which is why we have to separate the
473 # three phases above.
474
475 # So this is the final ordering:
476
477 # Phase 0 : all package-data.mk files
478 #           (requires ghc-cabal, ghc-pkg, mkdirhier, dummy-ghc etc.)
479 # Phase 1 : .depend files for bootstrap libs
480 #           (requires hsc2hs)
481 # Phase 2 : compiler/stage1/.depend
482 #           (requires bootstrap libs and genprimopcode)
483 # Phase 3 : ghc/stage1/.depend
484 #           (requires compiler/stage1)
485 #
486 # The rest : libraries/*/dist-install, compiler/stage2, ghc/stage2
487
488 BUILD_DIRS =
489
490 ifneq "$(BINDIST)" "YES"
491 BUILD_DIRS += \
492    $(GHC_MKDIRHIER_DIR)
493 endif
494
495 BUILD_DIRS += \
496    docs/users_guide \
497    docs/ext-core \
498    docs/man \
499    libraries/Cabal/doc \
500    $(GHC_UNLIT_DIR) \
501    $(GHC_HP2PS_DIR)
502
503 ifneq "$(GhcUnregisterised)" "YES"
504 BUILD_DIRS += \
505    $(GHC_MANGLER_DIR) \
506    $(GHC_SPLIT_DIR)
507 endif
508
509 ifneq "$(BINDIST)" "YES"
510 BUILD_DIRS += \
511    $(GHC_GENPRIMOP_DIR)
512 endif
513
514 BUILD_DIRS += \
515    driver \
516    driver/ghci \
517    driver/ghc \
518    libffi \
519    includes \
520    rts
521
522 ifneq "$(BINDIST)" "YES"
523 BUILD_DIRS += \
524    $(GHC_CABAL_DIR) \
525    $(GHC_GENAPPLY_DIR)
526 endif
527
528 ifneq "$(HADDOCK_DOCS)" "NO"
529 BUILD_DIRS += \
530    utils/haddock \
531    utils/haddock/doc
532 endif
533
534 ifneq "$(CLEANING)" "YES"
535 BUILD_DIRS += \
536    $(patsubst %, libraries/%, $(PACKAGES))
537 endif
538
539 ifneq "$(BootingFromHc)" "YES"
540 BUILD_DIRS += \
541    libraries/dph
542 endif
543
544 ifeq "$(INTEGER_LIBRARY)" "integer-gmp"
545 BUILD_DIRS += libraries/integer-gmp/gmp
546 endif
547
548 BUILD_DIRS += \
549    compiler \
550    $(GHC_HSC2HS_DIR) \
551    $(GHC_PKG_DIR) \
552    utils/ghctags \
553    utils/hpc \
554    utils/runghc \
555    ghc
556 ifeq "$(Windows)" "YES"
557 BUILD_DIRS += \
558    $(GHC_TOUCHY_DIR)
559 endif
560
561 BUILD_DIRS += utils/count_lines
562 BUILD_DIRS += utils/compare_sizes
563
564 ifneq "$(CLEANING)" "YES"
565 # After compiler/, because these packages depend on it
566 BUILD_DIRS += \
567    $(patsubst %, libraries/%, $(PACKAGES_STAGE2))
568 endif
569
570 # XXX libraries/% must come before any programs built with stage1, see
571 # Note [lib-depends].
572
573 ifeq "$(phase)" "0"
574 $(foreach lib,$(BOOT_PKGS),$(eval \
575   libraries/$(lib)_dist-boot_DISABLE = YES))
576 endif
577
578 ifneq "$(findstring $(phase),0 1)" ""
579 # We can build deps for compiler/stage1 in phase 2
580 compiler_stage1_DISABLE = YES
581 endif
582
583 ifneq "$(findstring $(phase),0 1 2)" ""
584 ghc_stage1_DISABLE = YES
585 endif
586
587 ifneq "$(CLEANING)" "YES"
588 ifeq "$(INTEGER_LIBRARY)" "integer-gmp"
589 libraries/base_dist-install_CONFIGURE_OPTS += --flags=-integer-simple
590 else
591     ifeq "$(INTEGER_LIBRARY)" "integer-simple"
592         libraries/base_dist-install_CONFIGURE_OPTS += --flags=integer-simple
593     else
594 $(error Unknown integer library: $(INTEGER_LIBRARY))
595     endif
596 endif
597 endif
598
599 ifneq "$(findstring $(phase),0 1 2 3)" ""
600 # In phases 0-3, we disable stage2-3, the full libraries and haddock
601 utils/haddock_dist_DISABLE = YES
602 utils/runghc_dist_DISABLE = YES
603 utils/ghctags_dist_DISABLE = YES
604 utils/hpc_dist_DISABLE = YES
605 utils/hsc2hs_dist-install_DISABLE = YES
606 utils/ghc-pkg_dist-install_DISABLE = YES
607 utils/compare_sizes_dist_DISABLE = YES
608 compiler_stage2_DISABLE = YES
609 compiler_stage3_DISABLE = YES
610 ghc_stage2_DISABLE = YES
611 ghc_stage3_DISABLE = YES
612 $(foreach lib,$(PACKAGES) $(PACKAGES_STAGE2),$(eval \
613   libraries/$(lib)_dist-install_DISABLE = YES))
614 endif
615
616 # These packages don't pass the Cabal checks because hs-source-dirs
617 # points outside the source directory. This isn't a real problem in
618 # these cases, so we just skip checking them.
619 CHECKED_libraries/dph/dph-seq = YES
620 CHECKED_libraries/dph/dph-par = YES
621 # In compiler's case, include-dirs points outside of the source tree
622 CHECKED_compiler = YES
623
624 include $(patsubst %, %/ghc.mk, $(BUILD_DIRS))
625
626 # We need -fno-warn-deprecated-flags to avoid failure with -Werror
627 GhcLibHcOpts += -fno-warn-deprecated-flags
628 GhcBootLibHcOpts += -fno-warn-deprecated-flags
629
630 # Add $(GhcLibHcOpts) to all library builds
631 $(foreach pkg,$(PACKAGES) $(PACKAGES_STAGE2),$(eval libraries/$(pkg)_dist-install_HC_OPTS += $$(GhcLibHcOpts)))
632
633 # XXX Hack; remove this
634 $(foreach pkg,$(PACKAGES_STAGE2),$(eval libraries/$(pkg)_dist-install_HC_OPTS += -Wwarn))
635
636 # A useful pseudo-target
637 .PHONY: stage1_libs
638 stage1_libs : $(ALL_STAGE1_LIBS)
639
640 ifeq "$(HADDOCK_DOCS)" "YES"
641 libraries/index.html: $(ALL_HADDOCK_FILES)
642         cd libraries && sh gen_contents_index --inplace
643 $(eval $(call all-target,library_doc_index,libraries/index.html))
644 INSTALL_LIBRARY_DOCS += libraries/*.html libraries/*.gif libraries/*.css libraries/*.js
645 CLEAN_FILES += libraries/doc-index* libraries/haddock*.css \
646                libraries/haddock*.js libraries/index*.html libraries/*.gif
647 endif
648
649 ifeq "$(CHECK_PACKAGES)" "YES"
650 all: check_packages
651 endif
652
653 # -----------------------------------------------------------------------------
654 # Bootstrapping libraries
655
656 # We need to build a few libraries with the installed GHC, since GHC itself
657 # and some of the tools depend on them:
658
659 ifneq "$(BINDIST)" "YES"
660
661 ifneq "$(BOOTSTRAPPING_CONF)" ""
662 ifeq "$(wildcard $(BOOTSTRAPPING_CONF))" ""
663 $(shell echo "[]" >$(BOOTSTRAPPING_CONF))
664 endif
665 endif
666
667 $(eval $(call clean-target,$(BOOTSTRAPPING_CONF),,$(BOOTSTRAPPING_CONF)))
668
669 # These three libraries do not depend on each other, so we can build
670 # them straight off:
671
672 $(eval $(call build-package,libraries/hpc,dist-boot,0))
673 $(eval $(call build-package,libraries/extensible-exceptions,dist-boot,0))
674 $(eval $(call build-package,libraries/Cabal,dist-boot,0))
675 $(eval $(call build-package,libraries/binary,dist-boot,0))
676 $(eval $(call build-package,libraries/bin-package-db,dist-boot,0))
677
678 # register the boot packages in strict sequence, because running
679 # multiple ghc-pkgs in parallel doesn't work (registrations may get
680 # lost).
681 fixed_pkg_prev=
682 $(foreach pkg,$(BOOT_PKGS),$(eval $(call fixed_pkg_dep,$(pkg),dist-boot)))
683
684 compiler/stage1/package-data.mk : \
685     libraries/Cabal/dist-boot/package-data.mk \
686     libraries/hpc/dist-boot/package-data.mk \
687     libraries/extensible-exceptions/dist-boot/package-data.mk \
688     libraries/bin-package-db/dist-boot/package-data.mk
689
690 # These are necessary because the bootstrapping compiler may not know
691 # about cross-package dependencies:
692 $(compiler_stage1_depfile_haskell) : $(BOOT_LIBS)
693 $(ghc_stage1_depfile_haskell) : $(compiler_stage1_v_LIB)
694
695 # A few careful dependencies between bootstrapping packages.  When we
696 # can rely on the stage 0 compiler being able to generate
697 # cross-package dependencies with -M (fixed in GHC 6.12.1) we can drop
698 # these, and also some of the phases.
699 #
700 # If you miss any out here, then 'make -j8' will probably tell you.
701 #
702 libraries/bin-package-db/dist-boot/build/Distribution/InstalledPackageInfo/Binary.$(v_osuf) : libraries/binary/dist-boot/build/Data/Binary.$(v_hisuf) libraries/Cabal/dist-boot/build/Distribution/InstalledPackageInfo.$(v_hisuf)
703
704 $(foreach pkg,$(BOOT_PKGS),$(eval libraries/$(pkg)_dist-boot_HC_OPTS += $$(GhcBootLibHcOpts)))
705
706 # Make sure we have all the GHCi libs by the time we've built
707 # ghc-stage2.  DPH includes a bit of Template Haskell which needs the
708 # GHCI libs, and we don't have a better way to express that dependency.
709 #
710 GHCI_LIBS = $(foreach lib,$(PACKAGES),$(libraries/$(lib)_dist-install_GHCI_LIB)) \
711             $(compiler_stage2_GHCI_LIB)
712
713 ghc/stage2/build/tmp/$(ghc_stage2_PROG) : $(GHCI_LIBS)
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     libraries/ghc-prim/dist-install/build/autogen/GHC/PrimopWrappers.hs
738 endif # BINDIST
739
740 libraries/ghc-prim/dist-install/build/autogen/GHC/Prim.hs: \
741                             $(PRIMOPS_TXT) $(GENPRIMOP_INPLACE) \
742                           | $$(dir $$@)/.
743         "$(GENPRIMOP_INPLACE)" --make-haskell-source < $< > $@
744
745 libraries/ghc-prim/dist-install/build/autogen/GHC/PrimopWrappers.hs: \
746                             $(PRIMOPS_TXT) $(GENPRIMOP_INPLACE) \
747                           | $$(dir $$@)/.
748         "$(GENPRIMOP_INPLACE)" --make-haskell-wrappers < $< > $@
749
750 .PHONY: tags
751 tags: tags_compiler
752
753 .PHONY: TAGS
754 TAGS: TAGS_compiler
755
756 # -----------------------------------------------------------------------------
757 # Installation
758
759 install: install_packages install_libs install_libexecs install_headers \
760          install_libexec_scripts install_bins install_docs \
761                  install_topdirs
762
763 install_bins: $(INSTALL_BINS)
764         $(INSTALL_DIR) "$(DESTDIR)$(bindir)"
765         for i in $(INSTALL_BINS); do \
766                 $(INSTALL_PROGRAM) $(INSTALL_BIN_OPTS) $$i "$(DESTDIR)$(bindir)" ;  \
767         done
768
769 install_libs: $(INSTALL_LIBS)
770         $(INSTALL_DIR) "$(DESTDIR)$(ghclibdir)"
771         for i in $(INSTALL_LIBS); do \
772                 case $$i in \
773                   *.a) \
774                     $(INSTALL_DATA) $(INSTALL_OPTS) $$i "$(DESTDIR)$(ghclibdir)"; \
775                     $(RANLIB) $(DESTDIR)$(ghclibdir)/`basename $$i` ;; \
776                   *.dll) \
777                     $(INSTALL_DATA) -s $(INSTALL_OPTS) $$i "$(DESTDIR)$(ghclibdir)" ;; \
778                   *.so) \
779                     $(INSTALL_SHLIB) $(INSTALL_OPTS) $$i "$(DESTDIR)$(ghclibdir)" ;; \
780                   *.dylib) \
781                     $(INSTALL_SHLIB) $(INSTALL_OPTS) $$i "$(DESTDIR)$(ghclibdir)";; \
782                   *) \
783                     $(INSTALL_DATA) $(INSTALL_OPTS) $$i "$(DESTDIR)$(ghclibdir)"; \
784                 esac; \
785         done
786
787 install_libexec_scripts: $(INSTALL_LIBEXEC_SCRIPTS)
788 ifeq "$(INSTALL_LIBEXEC_SCRIPTS)" ""
789         @:
790 else
791         $(INSTALL_DIR) "$(DESTDIR)$(ghclibexecdir)"
792         for i in $(INSTALL_LIBEXEC_SCRIPTS); do \
793                 $(INSTALL_SCRIPT) $(INSTALL_OPTS) $$i "$(DESTDIR)$(ghclibexecdir)"; \
794         done
795 endif
796
797 install_libexecs:  $(INSTALL_LIBEXECS)
798 ifeq "$(INSTALL_LIBEXECS)" ""
799         @:
800 else
801         $(INSTALL_DIR) "$(DESTDIR)$(ghclibexecdir)"
802         for i in $(INSTALL_LIBEXECS); do \
803                 $(INSTALL_PROGRAM) $(INSTALL_BIN_OPTS) $$i "$(DESTDIR)$(ghclibexecdir)"; \
804         done
805 # We rename ghc-stage2, so that the right program name is used in error
806 # messages etc.
807         "$(MV)" "$(DESTDIR)$(ghclibexecdir)/ghc-stage2" "$(DESTDIR)$(ghclibexecdir)/ghc"
808 endif
809
810 install_topdirs: $(INSTALL_TOPDIRS)
811         $(INSTALL_DIR) "$(DESTDIR)$(topdir)"
812         for i in $(INSTALL_TOPDIRS); do \
813                 $(INSTALL_PROGRAM) $(INSTALL_BIN_OPTS) $$i "$(DESTDIR)$(topdir)"; \
814         done
815
816 install_headers: $(INSTALL_HEADERS)
817         $(INSTALL_DIR) "$(DESTDIR)$(ghcheaderdir)"
818         for i in $(INSTALL_HEADERS); do \
819                 $(INSTALL_HEADER) $(INSTALL_OPTS) $$i "$(DESTDIR)$(ghcheaderdir)"; \
820         done
821
822 install_docs: $(INSTALL_DOCS)
823         $(INSTALL_DIR) "$(DESTDIR)$(docdir)"
824 ifneq "$(INSTALL_DOCS)" ""
825         for i in $(INSTALL_DOCS); do \
826                 $(INSTALL_DOC) $(INSTALL_OPTS) $$i "$(DESTDIR)$(docdir)"; \
827         done
828 endif
829         $(INSTALL_DIR) $(INSTALL_OPTS) "$(DESTDIR)$(docdir)/html"
830         $(INSTALL_DOC) $(INSTALL_OPTS) docs/index.html "$(DESTDIR)$(docdir)/html"
831 ifneq "$(INSTALL_LIBRARY_DOCS)" ""
832         $(INSTALL_DIR) $(INSTALL_OPTS) "$(DESTDIR)$(docdir)/html/libraries"
833         for i in $(INSTALL_LIBRARY_DOCS); do \
834                 $(INSTALL_DOC) $(INSTALL_OPTS) $$i "$(DESTDIR)$(docdir)/html/libraries/"; \
835         done
836         $(INSTALL_DATA) $(INSTALL_OPTS) libraries/prologue.txt "$(DESTDIR)$(docdir)/html/libraries/"
837         $(INSTALL_SCRIPT) $(INSTALL_OPTS) libraries/gen_contents_index "$(DESTDIR)$(docdir)/html/libraries/"
838 endif
839 ifneq "$(INSTALL_HTML_DOC_DIRS)" ""
840         for i in $(INSTALL_HTML_DOC_DIRS); do \
841                 $(INSTALL_DIR) $(INSTALL_OPTS) "$(DESTDIR)$(docdir)/html/`basename $$i`"; \
842                 $(INSTALL_DOC) $(INSTALL_OPTS) $$i/* "$(DESTDIR)$(docdir)/html/`basename $$i`"; \
843         done
844 endif
845
846 INSTALLED_PACKAGE_CONF=$(DESTDIR)$(topdir)/package.conf.d
847
848 # Install packages in the right order, so that ghc-pkg doesn't complain.
849 # Also, install ghc-pkg first.
850 ifeq "$(Windows)" "NO"
851 INSTALLED_GHC_REAL=$(DESTDIR)$(ghclibexecdir)/ghc
852 INSTALLED_GHC_PKG_REAL=$(DESTDIR)$(ghclibexecdir)/ghc-pkg
853 else
854 INSTALLED_GHC_REAL=$(DESTDIR)$(bindir)/ghc.exe
855 INSTALLED_GHC_PKG_REAL=$(DESTDIR)$(bindir)/ghc-pkg.exe
856 endif
857
858 INSTALLED_PACKAGES := $(filter-out haskeline mtl terminfo utf8-string,$(PACKAGES))
859 ifeq "$(InstallExtraPackages)" "NO"
860 INSTALLED_PACKAGES := $(filter-out $(EXTRA_PACKAGES), $(INSTALLED_PACKAGES))
861 endif
862
863 HIDDEN_PACKAGES = binary
864
865 define set_INSTALL_DISTDIR
866 # $1 = libraries/base, $2 = dist-install
867 # =>
868 # INSTALL_DISTDIR_libraries/base = dist-install
869 INSTALL_DISTDIR_$1 = $2
870 endef
871
872 $(eval $(foreach p,$(INSTALLED_PACKAGES) $(PACKAGES_STAGE2),\
873 $(call set_INSTALL_DISTDIR,libraries/$p,dist-install)))
874 INSTALL_DISTDIR_compiler = stage2
875
876 ALL_INSTALLED_PACKAGES = $(addprefix libraries/,$(INSTALLED_PACKAGES)) \
877                          compiler \
878                          $(addprefix libraries/,$(PACKAGES_STAGE2))
879
880 install_packages: install_libexecs
881 install_packages: libffi/package.conf.install rts/package.conf.install
882         $(INSTALL_DIR) "$(DESTDIR)$(topdir)"
883         "$(RM)" -r $(RM_OPTS) "$(INSTALLED_PACKAGE_CONF)"
884         $(INSTALL_DIR) "$(INSTALLED_PACKAGE_CONF)"
885         "$(INSTALLED_GHC_PKG_REAL)" --force --global-conf "$(INSTALLED_PACKAGE_CONF)" update libffi/package.conf.install
886         "$(INSTALLED_GHC_PKG_REAL)" --force --global-conf "$(INSTALLED_PACKAGE_CONF)" update rts/package.conf.install
887         $(foreach p, $(ALL_INSTALLED_PACKAGES),\
888             "$(GHC_CABAL_INPLACE)" install \
889                  "$(INSTALLED_GHC_REAL)" \
890                  "$(INSTALLED_GHC_PKG_REAL)" \
891                  "$(STRIP)" \
892                  "$(DESTDIR)$(topdir)" \
893                  $p $(INSTALL_DISTDIR_$p) \
894                  '$(DESTDIR)' '$(prefix)' '$(ghclibdir)' '$(docdir)/html/libraries' \
895                  $(RelocatableBuild) &&) true
896         $(foreach p, $(HIDDEN_PACKAGES),\
897             "$(INSTALLED_GHC_PKG_REAL)" --global-conf "$(INSTALLED_PACKAGE_CONF)" \
898                                       hide $p &&) true
899
900 # -----------------------------------------------------------------------------
901 # Binary distributions
902
903 ifneq "$(CLEANING)" "YES"
904 # This rule seems to hold some files open on Windows which prevents
905 # cleaning, perhaps due to the $(wildcard).
906
907 $(eval $(call bindist,.,\
908     LICENSE \
909     README \
910     INSTALL \
911     configure config.sub config.guess install-sh \
912     extra-gcc-opts.in \
913     Makefile \
914     mk/config.mk.in \
915     $(INPLACE_BIN)/mkdirhier \
916     $(INPLACE_BIN)/ghc-cabal \
917     utils/ghc-pwd/ghc-pwd \
918         $(BINDIST_WRAPPERS) \
919         $(BINDIST_PERL_SOURCES) \
920         $(BINDIST_LIBS) \
921         $(BINDIST_HI) \
922         $(BINDIST_EXTRAS) \
923         $(includes_H_CONFIG) \
924         $(includes_H_PLATFORM) \
925     $(includes_H_FILES) \
926         includes/ghcconfig.h \
927         includes/rts/Config.h \
928     $(INSTALL_HEADERS) \
929     $(INSTALL_LIBEXECS) \
930     $(INSTALL_LIBEXEC_SCRIPTS) \
931     $(INSTALL_TOPDIRS) \
932     $(INSTALL_BINS) \
933     $(INSTALL_MANPAGES) \
934     $(INSTALL_DOCS) \
935     $(INSTALL_LIBRARY_DOCS) \
936     $(addsuffix /*,$(INSTALL_HTML_DOC_DIRS)) \
937         docs/index.html \
938         compiler/stage2/doc \
939         $(wildcard libraries/*/dist-install/doc/) \
940         $(wildcard libraries/*/*/dist-install/doc/) \
941     $(filter-out extra-gcc-opts,$(INSTALL_LIBS)) \
942     $(filter-out %/project.mk mk/config.mk %/mk/install.mk,$(MAKEFILE_LIST)) \
943         mk/project.mk \
944         mk/install.mk.in \
945         bindist.mk \
946         libraries/gen_contents_index \
947         libraries/prologue.txt \
948         libraries/dph/LICENSE \
949  ))
950 endif
951 # mk/project.mk gets an absolute path, so we manually include it in
952 # the bindist with a relative path
953
954 BIN_DIST_MK = $(BIN_DIST_PREP_DIR)/bindist.mk
955
956 unix-binary-dist-prep:
957         "$(RM)" $(RM_OPTS) -r bindistprep/
958         "$(MKDIRHIER)" $(BIN_DIST_PREP_DIR)
959         set -e; for i in 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
960         echo "HADDOCK_DOCS       = $(HADDOCK_DOCS)"       >> $(BIN_DIST_MK)
961         echo "LATEX_DOCS         = $(LATEX_DOCS)"         >> $(BIN_DIST_MK)
962         echo "BUILD_DOCBOOK_HTML = $(BUILD_DOCBOOK_HTML)" >> $(BIN_DIST_MK)
963         echo "BUILD_DOCBOOK_PS   = $(BUILD_DOCBOOK_PS)"   >> $(BIN_DIST_MK)
964         echo "BUILD_DOCBOOK_PDF  = $(BUILD_DOCBOOK_PDF)"  >> $(BIN_DIST_MK)
965         echo "BUILD_MAN          = $(BUILD_MAN)"          >> $(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)" hcf - -T ../$(BIN_DIST_LIST) | bzip2 -c > ../$(BIN_DIST_PREP_TAR_BZ2)
971
972 windows-binary-dist-prep:
973         "$(RM)" $(RM_OPTS) -r bindistprep/
974         $(MAKE) prefix=$(TOP)/$(BIN_DIST_PREP_DIR) install
975         cd bindistprep && "$(TAR)" cf - $(BIN_DIST_NAME) | bzip2 -c > ../$(BIN_DIST_PREP_TAR_BZ2)
976
977 windows-installer:
978 ifeq "$(ISCC)" ""
979         @echo No ISCC, so not making installer
980 else
981         "$(ISCC)" /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 .PHONY: publish-docs
1006 publish-docs:
1007         $(call try10Times,$(PublishCp) -r bindisttest/installed/share/doc/ghc/* $(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=$(shell pwd)/$(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) -r $(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) -r 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) -r
1082
1083 .PHONY: sdist
1084 sdist : sdist-prep
1085         "$(TAR)" 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 += utils/ghc-pwd/ghc-pwd
1123 CLEAN_FILES += utils/ghc-pwd/ghc-pwd.exe
1124 CLEAN_FILES += utils/ghc-pwd/ghc-pwd.hi
1125 CLEAN_FILES += utils/ghc-pwd/ghc-pwd.o
1126 CLEAN_FILES += libraries/bootstrapping.conf
1127 CLEAN_FILES += libraries/integer-gmp/cbits/GmpDerivedConstants.h
1128 CLEAN_FILES += libraries/integer-gmp/cbits/mkGmpDerivedConstants
1129
1130 clean : clean_files clean_libraries
1131
1132 .PHONY: clean_files
1133 clean_files :
1134         "$(RM)" $(RM_OPTS) $(CLEAN_FILES)
1135
1136 ifneq "$(NO_CLEAN_GMP)" "YES"
1137 CLEAN_FILES += libraries/integer-gmp/gmp/gmp.h
1138 CLEAN_FILES += libraries/integer-gmp/gmp/libgmp.a
1139
1140 clean : clean_gmp
1141 .PHONY: clean_gmp
1142 clean_gmp:
1143         "$(RM)" $(RM_OPTS) -r libraries/integer-gmp/gmp/objs
1144         "$(RM)" $(RM_OPTS) -r libraries/integer-gmp/gmp/gmpbuild
1145 endif
1146
1147 .PHONY: clean_libraries
1148 clean_libraries: $(patsubst %,clean_libraries/%_dist-install,$(PACKAGES) $(PACKAGES_STAGE2))
1149 clean_libraries: $(patsubst %,clean_libraries/%_dist-boot,$(BOOT_PKGS))
1150
1151 clean_libraries:
1152         "$(RM)" $(RM_OPTS) -r $(patsubst %, libraries/%/dist, $(PACKAGES) $(PACKAGES_STAGE2))
1153         "$(RM)" $(RM_OPTS) $(patsubst %, libraries/%/*.buildinfo, $(PACKAGES) $(PACKAGES_STAGE2))
1154
1155 # We have to define a clean target for each library manually, because the
1156 # libraries/*/ghc.mk files are not included when we're cleaning.
1157 ifeq "$(CLEANING)" "YES"
1158 $(foreach lib,$(PACKAGES) $(PACKAGES_STAGE2),\
1159   $(eval $(call clean-target,libraries/$(lib),dist-install,libraries/$(lib)/dist-install)))
1160 endif
1161
1162 clean : clean_bindistprep
1163 .PHONY: clean_bindistprep
1164 clean_bindistprep:
1165         "$(RM)" $(RM_OPTS) -r bindistprep/
1166
1167 distclean : clean
1168         "$(RM)" $(RM_OPTS) config.cache config.status config.log mk/config.h mk/stamp-h
1169         "$(RM)" $(RM_OPTS) mk/config.mk mk/are-validating.mk mk/project.mk
1170         "$(RM)" $(RM_OPTS) mk/config.mk.old mk/project.mk.old
1171         "$(RM)" $(RM_OPTS) extra-gcc-opts docs/users_guide/ug-book.xml
1172         "$(RM)" $(RM_OPTS) compiler/ghc.cabal compiler/ghc.cabal.old
1173         "$(RM)" $(RM_OPTS) ghc/ghc-bin.cabal
1174         "$(RM)" $(RM_OPTS) libraries/base/include/HsBaseConfig.h
1175         "$(RM)" $(RM_OPTS) libraries/directory/include/HsDirectoryConfig.h
1176         "$(RM)" $(RM_OPTS) libraries/process/include/HsProcessConfig.h
1177         "$(RM)" $(RM_OPTS) libraries/unix/include/HsUnixConfig.h
1178         "$(RM)" $(RM_OPTS) libraries/old-time/include/HsTimeConfig.h
1179
1180         "$(RM)" $(RM_OPTS) $(patsubst %, libraries/%/config.log, $(PACKAGES) $(PACKAGES_STAGE2))
1181         "$(RM)" $(RM_OPTS) $(patsubst %, libraries/%/config.status, $(PACKAGES) $(PACKAGES_STAGE2))
1182         "$(RM)" $(RM_OPTS) $(patsubst %, libraries/%/include/Hs*Config.h, $(PACKAGES) $(PACKAGES_STAGE2))
1183         "$(RM)" $(RM_OPTS) -r $(patsubst %, libraries/%/autom4te.cache, $(PACKAGES) $(PACKAGES_STAGE2))
1184
1185 maintainer-clean : distclean
1186         "$(RM)" $(RM_OPTS) configure mk/config.h.in
1187         "$(RM)" $(RM_OPTS) -r autom4te.cache libraries/*/autom4te.cache
1188         "$(RM)" $(RM_OPTS) ghc.spec
1189         "$(RM)" $(RM_OPTS) $(patsubst %, libraries/%/GNUmakefile, \
1190                 $(PACKAGES) $(PACKAGES_STAGE2))
1191         "$(RM)" $(RM_OPTS) $(patsubst %, libraries/%/ghc.mk, $(PACKAGES) $(PACKAGES_STAGE2))
1192         "$(RM)" $(RM_OPTS) $(patsubst %, libraries/%/configure, \
1193                 $(PACKAGES) $(PACKAGES_STAGE2))
1194         "$(RM)" $(RM_OPTS) libraries/base/include/HsBaseConfig.h.in
1195         "$(RM)" $(RM_OPTS) libraries/directory/include/HsDirectoryConfig.h.in
1196         "$(RM)" $(RM_OPTS) libraries/process/include/HsProcessConfig.h.in
1197         "$(RM)" $(RM_OPTS) libraries/unix/include/HsUnixConfig.h.in
1198         "$(RM)" $(RM_OPTS) libraries/old-time/include/HsTimeConfig.h.in
1199
1200 .PHONY: all_libraries
1201
1202 .PHONY: bootstrapping-files
1203 bootstrapping-files: $(OTHER_LIBS)
1204 bootstrapping-files: includes/ghcautoconf.h
1205 bootstrapping-files: includes/DerivedConstants.h
1206 bootstrapping-files: includes/GHCConstants.h
1207
1208 .DELETE_ON_ERROR:
1209