sdist: Haddock.Interface.{Lex,Parse} moved to Haddock.{Lex,Parse}
[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/man \
498    libraries/Cabal/doc \
499    $(GHC_UNLIT_DIR) \
500    $(GHC_HP2PS_DIR)
501
502 ifneq "$(GhcUnregisterised)" "YES"
503 BUILD_DIRS += \
504    $(GHC_MANGLER_DIR) \
505    $(GHC_SPLIT_DIR)
506 endif
507
508 ifneq "$(BINDIST)" "YES"
509 BUILD_DIRS += \
510    $(GHC_GENPRIMOP_DIR)
511 endif
512
513 BUILD_DIRS += \
514    driver \
515    driver/ghci \
516    driver/ghc \
517    libffi \
518    includes \
519    rts
520
521 ifneq "$(BINDIST)" "YES"
522 BUILD_DIRS += \
523    $(GHC_CABAL_DIR) \
524    $(GHC_GENAPPLY_DIR)
525 endif
526
527 ifneq "$(HADDOCK_DOCS)" "NO"
528 BUILD_DIRS += \
529    utils/haddock \
530    utils/haddock/doc
531 endif
532
533 ifneq "$(CLEANING)" "YES"
534 BUILD_DIRS += \
535    $(patsubst %, libraries/%, $(PACKAGES))
536 endif
537
538 ifneq "$(BootingFromHc)" "YES"
539 BUILD_DIRS += \
540    libraries/dph
541 endif
542
543 ifeq "$(INTEGER_LIBRARY)" "integer-gmp"
544 BUILD_DIRS += libraries/integer-gmp/gmp
545 endif
546
547 BUILD_DIRS += \
548    compiler \
549    $(GHC_HSC2HS_DIR) \
550    $(GHC_PKG_DIR) \
551    utils/ghctags \
552    utils/hpc \
553    utils/runghc \
554    ghc
555 ifeq "$(Windows)" "YES"
556 BUILD_DIRS += \
557    $(GHC_TOUCHY_DIR)
558 endif
559
560 BUILD_DIRS += utils/count_lines
561 BUILD_DIRS += utils/compare_sizes
562
563 ifneq "$(CLEANING)" "YES"
564 # After compiler/, because these packages depend on it
565 BUILD_DIRS += \
566    $(patsubst %, libraries/%, $(PACKAGES_STAGE2))
567 endif
568
569 # XXX libraries/% must come before any programs built with stage1, see
570 # Note [lib-depends].
571
572 ifeq "$(phase)" "0"
573 $(foreach lib,$(BOOT_PKGS),$(eval \
574   libraries/$(lib)_dist-boot_DISABLE = YES))
575 endif
576
577 ifneq "$(findstring $(phase),0 1)" ""
578 # We can build deps for compiler/stage1 in phase 2
579 compiler_stage1_DISABLE = YES
580 endif
581
582 ifneq "$(findstring $(phase),0 1 2)" ""
583 ghc_stage1_DISABLE = YES
584 endif
585
586 ifneq "$(CLEANING)" "YES"
587 ifeq "$(INTEGER_LIBRARY)" "integer-gmp"
588 libraries/base_dist-install_CONFIGURE_OPTS += --flags=-integer-simple
589 else
590     ifeq "$(INTEGER_LIBRARY)" "integer-simple"
591         libraries/base_dist-install_CONFIGURE_OPTS += --flags=integer-simple
592     else
593 $(error Unknown integer library: $(INTEGER_LIBRARY))
594     endif
595 endif
596 endif
597
598 ifneq "$(findstring $(phase),0 1 2 3)" ""
599 # In phases 0-3, we disable stage2-3, the full libraries and haddock
600 utils/haddock_dist_DISABLE = YES
601 utils/runghc_dist_DISABLE = YES
602 utils/ghctags_dist_DISABLE = YES
603 utils/hpc_dist_DISABLE = YES
604 utils/hsc2hs_dist-install_DISABLE = YES
605 utils/ghc-pkg_dist-install_DISABLE = YES
606 utils/compare_sizes_dist_DISABLE = YES
607 compiler_stage2_DISABLE = YES
608 compiler_stage3_DISABLE = YES
609 ghc_stage2_DISABLE = YES
610 ghc_stage3_DISABLE = YES
611 $(foreach lib,$(PACKAGES) $(PACKAGES_STAGE2),$(eval \
612   libraries/$(lib)_dist-install_DISABLE = YES))
613 endif
614
615 # These packages don't pass the Cabal checks because hs-source-dirs
616 # points outside the source directory. This isn't a real problem in
617 # these cases, so we just skip checking them.
618 CHECKED_libraries/dph/dph-seq = YES
619 CHECKED_libraries/dph/dph-par = YES
620 # In compiler's case, include-dirs points outside of the source tree
621 CHECKED_compiler = YES
622
623 include $(patsubst %, %/ghc.mk, $(BUILD_DIRS))
624
625 # We need -fno-warn-deprecated-flags to avoid failure with -Werror
626 GhcLibHcOpts += -fno-warn-deprecated-flags
627 ifeq "$(ghc_ge_609)" "YES"
628 GhcBootLibHcOpts += -fno-warn-deprecated-flags
629 endif
630
631 # Add $(GhcLibHcOpts) to all library builds
632 $(foreach pkg,$(PACKAGES) $(PACKAGES_STAGE2),$(eval libraries/$(pkg)_dist-install_HC_OPTS += $$(GhcLibHcOpts)))
633
634 # XXX Hack; remove this
635 $(foreach pkg,$(PACKAGES_STAGE2),$(eval libraries/$(pkg)_dist-install_HC_OPTS += -Wwarn))
636
637 # A useful pseudo-target
638 .PHONY: stage1_libs
639 stage1_libs : $(ALL_STAGE1_LIBS)
640
641 ifeq "$(HADDOCK_DOCS)" "YES"
642 libraries/index.html: $(ALL_HADDOCK_FILES)
643         cd libraries && sh gen_contents_index --inplace
644 $(eval $(call all-target,library_doc_index,libraries/index.html))
645 INSTALL_LIBRARY_DOCS += libraries/*.html libraries/*.gif libraries/*.css libraries/*.js
646 CLEAN_FILES += libraries/doc-index* libraries/haddock*.css \
647                libraries/haddock*.js libraries/index*.html libraries/*.gif
648 endif
649
650 ifeq "$(CHECK_PACKAGES)" "YES"
651 all: check_packages
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,$(BOOT_PKGS),$(eval $(call fixed_pkg_dep,$(pkg),dist-boot)))
684
685 compiler/stage1/package-data.mk : \
686     libraries/Cabal/dist-boot/package-data.mk \
687     libraries/hpc/dist-boot/package-data.mk \
688     libraries/extensible-exceptions/dist-boot/package-data.mk \
689     libraries/bin-package-db/dist-boot/package-data.mk
690
691 # These are necessary because the bootstrapping compiler may not know
692 # about cross-package dependencies:
693 $(compiler_stage1_depfile_haskell) : $(BOOT_LIBS)
694 $(ghc_stage1_depfile_haskell) : $(compiler_stage1_v_LIB)
695
696 # A few careful dependencies between bootstrapping packages.  When we
697 # can rely on the stage 0 compiler being able to generate
698 # cross-package dependencies with -M (fixed in GHC 6.12.1) we can drop
699 # these, and also some of the phases.
700 #
701 # If you miss any out here, then 'make -j8' will probably tell you.
702 #
703 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)
704
705 $(foreach pkg,$(BOOT_PKGS),$(eval libraries/$(pkg)_dist-boot_HC_OPTS += $$(GhcBootLibHcOpts)))
706
707 # Make sure we have all the GHCi libs by the time we've built
708 # ghc-stage2.  DPH includes a bit of Template Haskell which needs the
709 # GHCI libs, and we don't have a better way to express that dependency.
710 #
711 GHCI_LIBS = $(foreach lib,$(PACKAGES),$(libraries/$(lib)_dist-install_GHCI_LIB)) \
712             $(compiler_stage2_GHCI_LIB)
713
714 ghc/stage2/build/tmp/$(ghc_stage2_PROG) : $(GHCI_LIBS)
715
716 endif
717
718 # -----------------------------------------------------------------------------
719 # Creating a local mingw copy on Windows
720
721 ifeq "$(Windows)" "YES"
722
723 install : install_mingw
724 .PHONY: install_mingw
725 install_mingw : $(INPLACE_MINGW)
726         "$(CP)" -Rp $(INPLACE_MINGW) $(prefix)
727
728 install : install_perl
729 .PHONY: install_perl
730 install_perl : $(INPLACE_PERL)
731         "$(CP)" -Rp $(INPLACE_PERL) $(prefix)
732
733 endif # Windows
734
735 ifneq "$(BINDIST)" "YES"
736 $(ghc-prim-$(libraries/ghc-prim_dist-install_VERSION)_HADDOCK_FILE): \
737     libraries/ghc-prim/dist-install/build/autogen/GHC/Prim.hs \
738     libraries/ghc-prim/dist-install/build/autogen/GHC/PrimopWrappers.hs
739 endif # BINDIST
740
741 libraries/ghc-prim/dist-install/build/autogen/GHC/Prim.hs: \
742                             $(PRIMOPS_TXT) $(GENPRIMOP_INPLACE) \
743                           | $$(dir $$@)/.
744         "$(GENPRIMOP_INPLACE)" --make-haskell-source < $< > $@
745
746 libraries/ghc-prim/dist-install/build/autogen/GHC/PrimopWrappers.hs: \
747                             $(PRIMOPS_TXT) $(GENPRIMOP_INPLACE) \
748                           | $$(dir $$@)/.
749         "$(GENPRIMOP_INPLACE)" --make-haskell-wrappers < $< > $@
750
751 .PHONY: tags
752 tags: tags_compiler
753
754 .PHONY: TAGS
755 TAGS: TAGS_compiler
756
757 # -----------------------------------------------------------------------------
758 # Installation
759
760 install: install_packages install_libs install_libexecs install_headers \
761          install_libexec_scripts install_bins install_docs \
762                  install_topdirs install_topdir_scripts
763
764 install_bins: $(INSTALL_BINS)
765         $(INSTALL_DIR) "$(DESTDIR)$(bindir)"
766         for i in $(INSTALL_BINS); do \
767                 $(INSTALL_PROGRAM) $(INSTALL_BIN_OPTS) $$i "$(DESTDIR)$(bindir)" ;  \
768         done
769
770 install_libs: $(INSTALL_LIBS)
771         $(INSTALL_DIR) "$(DESTDIR)$(ghclibdir)"
772         for i in $(INSTALL_LIBS); do \
773                 case $$i in \
774                   *.a) \
775                     $(INSTALL_DATA) $(INSTALL_OPTS) $$i "$(DESTDIR)$(ghclibdir)"; \
776                     $(RANLIB) $(DESTDIR)$(ghclibdir)/`basename $$i` ;; \
777                   *.dll) \
778                     $(INSTALL_DATA) -s $(INSTALL_OPTS) $$i "$(DESTDIR)$(ghclibdir)" ;; \
779                   *.so) \
780                     $(INSTALL_SHLIB) $(INSTALL_OPTS) $$i "$(DESTDIR)$(ghclibdir)" ;; \
781                   *.dylib) \
782                     $(INSTALL_SHLIB) $(INSTALL_OPTS) $$i "$(DESTDIR)$(ghclibdir)";; \
783                   *) \
784                     $(INSTALL_DATA) $(INSTALL_OPTS) $$i "$(DESTDIR)$(ghclibdir)"; \
785                 esac; \
786         done
787
788 install_libexec_scripts: $(INSTALL_LIBEXEC_SCRIPTS)
789 ifeq "$(INSTALL_LIBEXEC_SCRIPTS)" ""
790         @:
791 else
792         $(INSTALL_DIR) "$(DESTDIR)$(ghclibexecdir)"
793         for i in $(INSTALL_LIBEXEC_SCRIPTS); do \
794                 $(INSTALL_SCRIPT) $(INSTALL_OPTS) $$i "$(DESTDIR)$(ghclibexecdir)"; \
795         done
796 endif
797
798 install_libexecs:  $(INSTALL_LIBEXECS)
799 ifeq "$(INSTALL_LIBEXECS)" ""
800         @:
801 else
802         $(INSTALL_DIR) "$(DESTDIR)$(ghclibexecdir)"
803         for i in $(INSTALL_LIBEXECS); do \
804                 $(INSTALL_PROGRAM) $(INSTALL_BIN_OPTS) $$i "$(DESTDIR)$(ghclibexecdir)"; \
805         done
806 # We rename ghc-stage2, so that the right program name is used in error
807 # messages etc.
808         "$(MV)" "$(DESTDIR)$(ghclibexecdir)/ghc-stage2" "$(DESTDIR)$(ghclibexecdir)/ghc"
809 endif
810
811 install_topdir_scripts: $(INSTALL_TOPDIR_SCRIPTS)
812         $(INSTALL_DIR) "$(DESTDIR)$(topdir)"
813         for i in $(INSTALL_TOPDIR_SCRIPTS); do \
814                 $(INSTALL_SCRIPT) $(INSTALL_OPTS) $$i "$(DESTDIR)$(topdir)"; \
815         done
816
817 install_topdirs: $(INSTALL_TOPDIRS)
818         $(INSTALL_DIR) "$(DESTDIR)$(topdir)"
819         for i in $(INSTALL_TOPDIRS); do \
820                 $(INSTALL_PROGRAM) $(INSTALL_BIN_OPTS) $$i "$(DESTDIR)$(topdir)"; \
821         done
822
823 install_headers: $(INSTALL_HEADERS)
824         $(INSTALL_DIR) "$(DESTDIR)$(ghcheaderdir)"
825         for i in $(INSTALL_HEADERS); do \
826                 $(INSTALL_HEADER) $(INSTALL_OPTS) $$i "$(DESTDIR)$(ghcheaderdir)"; \
827         done
828
829 install_docs: $(INSTALL_DOCS)
830         $(INSTALL_DIR) "$(DESTDIR)$(docdir)"
831 ifneq "$(INSTALL_DOCS)" ""
832         for i in $(INSTALL_DOCS); do \
833                 $(INSTALL_DOC) $(INSTALL_OPTS) $$i "$(DESTDIR)$(docdir)"; \
834         done
835 endif
836         $(INSTALL_DIR) $(INSTALL_OPTS) "$(DESTDIR)$(docdir)/html"
837         $(INSTALL_DOC) $(INSTALL_OPTS) docs/index.html "$(DESTDIR)$(docdir)/html"
838 ifneq "$(INSTALL_LIBRARY_DOCS)" ""
839         $(INSTALL_DIR) $(INSTALL_OPTS) "$(DESTDIR)$(docdir)/html/libraries"
840         for i in $(INSTALL_LIBRARY_DOCS); do \
841                 $(INSTALL_DOC) $(INSTALL_OPTS) $$i "$(DESTDIR)$(docdir)/html/libraries/"; \
842         done
843         $(INSTALL_DATA) $(INSTALL_OPTS) libraries/prologue.txt "$(DESTDIR)$(docdir)/html/libraries/"
844         $(INSTALL_SCRIPT) $(INSTALL_OPTS) libraries/gen_contents_index "$(DESTDIR)$(docdir)/html/libraries/"
845 endif
846 ifneq "$(INSTALL_HTML_DOC_DIRS)" ""
847         for i in $(INSTALL_HTML_DOC_DIRS); do \
848                 $(INSTALL_DIR) $(INSTALL_OPTS) "$(DESTDIR)$(docdir)/html/`basename $$i`"; \
849                 $(INSTALL_DOC) $(INSTALL_OPTS) $$i/* "$(DESTDIR)$(docdir)/html/`basename $$i`"; \
850         done
851 endif
852
853 INSTALLED_PACKAGE_CONF=$(DESTDIR)$(topdir)/package.conf.d
854
855 # Install packages in the right order, so that ghc-pkg doesn't complain.
856 # Also, install ghc-pkg first.
857 ifeq "$(Windows)" "NO"
858 INSTALLED_GHC_REAL=$(DESTDIR)$(ghclibexecdir)/ghc
859 INSTALLED_GHC_PKG_REAL=$(DESTDIR)$(ghclibexecdir)/ghc-pkg
860 else
861 INSTALLED_GHC_REAL=$(DESTDIR)$(bindir)/ghc.exe
862 INSTALLED_GHC_PKG_REAL=$(DESTDIR)$(bindir)/ghc-pkg.exe
863 endif
864
865 INSTALLED_PACKAGES = $(filter-out haskeline mtl terminfo,$(PACKAGES))
866 HIDDEN_PACKAGES = binary
867
868 define set_INSTALL_DISTDIR
869 # $1 = libraries/base, $2 = dist-install
870 # =>
871 # INSTALL_DISTDIR_libraries/base = dist-install
872 INSTALL_DISTDIR_$1 = $2
873 endef
874
875 $(eval $(foreach p,$(INSTALLED_PACKAGES) $(PACKAGES_STAGE2),\
876 $(call set_INSTALL_DISTDIR,libraries/$p,dist-install)))
877 INSTALL_DISTDIR_compiler = stage2
878
879 ALL_INSTALLED_PACKAGES = $(addprefix libraries/,$(INSTALLED_PACKAGES)) \
880                          compiler \
881                          $(addprefix libraries/,$(PACKAGES_STAGE2))
882
883 install_packages: install_libexecs
884 install_packages: libffi/package.conf.install rts/package.conf.install
885         $(INSTALL_DIR) "$(DESTDIR)$(topdir)"
886         "$(RM)" -r $(RM_OPTS) "$(INSTALLED_PACKAGE_CONF)"
887         $(INSTALL_DIR) "$(INSTALLED_PACKAGE_CONF)"
888         "$(INSTALLED_GHC_PKG_REAL)" --force --global-conf "$(INSTALLED_PACKAGE_CONF)" update libffi/package.conf.install
889         "$(INSTALLED_GHC_PKG_REAL)" --force --global-conf "$(INSTALLED_PACKAGE_CONF)" update rts/package.conf.install
890         $(foreach p, $(ALL_INSTALLED_PACKAGES),\
891             "$(GHC_CABAL_INPLACE)" install \
892                  "$(INSTALLED_GHC_REAL)" \
893                  "$(INSTALLED_GHC_PKG_REAL)" \
894                  "$(STRIP)" \
895                  "$(DESTDIR)$(topdir)" \
896                  $p $(INSTALL_DISTDIR_$p) \
897                  '$(DESTDIR)' '$(prefix)' '$(ghclibdir)' '$(docdir)/html/libraries' \
898                  $(RelocatableBuild) &&) true
899         $(foreach p, $(HIDDEN_PACKAGES),\
900             "$(INSTALLED_GHC_PKG_REAL)" --global-conf "$(INSTALLED_PACKAGE_CONF)" \
901                                       hide $p &&) true
902
903 # -----------------------------------------------------------------------------
904 # Binary distributions
905
906 ifneq "$(CLEANING)" "YES"
907 # This rule seems to hold some files open on Windows which prevents
908 # cleaning, perhaps due to the $(wildcard).
909
910 $(eval $(call bindist,.,\
911     LICENSE \
912     README \
913     INSTALL \
914     configure config.sub config.guess install-sh \
915     extra-gcc-opts.in \
916     Makefile \
917     mk/config.mk.in \
918     $(INPLACE_BIN)/mkdirhier \
919     $(INPLACE_BIN)/ghc-cabal \
920     utils/ghc-pwd/ghc-pwd \
921         $(BINDIST_WRAPPERS) \
922         $(BINDIST_LIBS) \
923         $(BINDIST_HI) \
924         $(BINDIST_EXTRAS) \
925         $(includes_H_CONFIG) \
926         $(includes_H_PLATFORM) \
927     $(includes_H_FILES) \
928         includes/ghcconfig.h \
929         includes/rts/Config.h \
930     $(INSTALL_HEADERS) \
931     $(INSTALL_LIBEXECS) \
932     $(INSTALL_LIBEXEC_SCRIPTS) \
933     $(INSTALL_TOPDIRS) \
934     $(INSTALL_TOPDIR_SCRIPTS) \
935     $(INSTALL_BINS) \
936     $(INSTALL_MANPAGES) \
937     $(INSTALL_DOCS) \
938     $(INSTALL_LIBRARY_DOCS) \
939     $(addsuffix /*,$(INSTALL_HTML_DOC_DIRS)) \
940         docs/index.html \
941         compiler/stage2/doc \
942         $(wildcard libraries/*/dist-install/doc/) \
943     $(filter-out extra-gcc-opts,$(INSTALL_LIBS)) \
944     $(filter-out %/project.mk mk/config.mk %/mk/install.mk,$(MAKEFILE_LIST)) \
945         mk/project.mk \
946         mk/install.mk.in \
947         bindist.mk \
948         libraries/gen_contents_index \
949         libraries/prologue.txt \
950         libraries/dph/LICENSE \
951  ))
952 endif
953 # mk/project.mk gets an absolute path, so we manually include it in
954 # the bindist with a relative path
955
956 BIN_DIST_MK = $(BIN_DIST_PREP_DIR)/bindist.mk
957
958 unix-binary-dist-prep:
959         "$(RM)" $(RM_OPTS) -r bindistprep/
960         "$(MKDIRHIER)" $(BIN_DIST_PREP_DIR)
961         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
962         echo "HADDOCK_DOCS       = $(HADDOCK_DOCS)"       >> $(BIN_DIST_MK)
963         echo "LATEX_DOCS         = $(LATEX_DOCS)"         >> $(BIN_DIST_MK)
964         echo "BUILD_DOCBOOK_HTML = $(BUILD_DOCBOOK_HTML)" >> $(BIN_DIST_MK)
965         echo "BUILD_DOCBOOK_PS   = $(BUILD_DOCBOOK_PS)"   >> $(BIN_DIST_MK)
966         echo "BUILD_DOCBOOK_PDF  = $(BUILD_DOCBOOK_PDF)"  >> $(BIN_DIST_MK)
967         echo "BUILD_MAN          = $(BUILD_MAN)"          >> $(BIN_DIST_MK)
968         cd $(BIN_DIST_PREP_DIR) && autoreconf
969         "$(RM)" $(RM_OPTS) $(BIN_DIST_PREP_TAR)
970 # h means "follow symlinks", e.g. if aclocal.m4 is a symlink to a source
971 # tree then we want to include the real file, not a symlink to it
972         cd bindistprep && "$(TAR)" hcf - -T ../$(BIN_DIST_LIST) | bzip2 -c > ../$(BIN_DIST_PREP_TAR_BZ2)
973
974 windows-binary-dist-prep:
975         "$(RM)" $(RM_OPTS) -r bindistprep/
976         $(MAKE) prefix=$(TOP)/$(BIN_DIST_PREP_DIR) install
977         cd bindistprep && "$(TAR)" cf - $(BIN_DIST_NAME) | bzip2 -c > ../$(BIN_DIST_PREP_TAR_BZ2)
978
979 windows-installer:
980 ifeq "$(ISCC)" ""
981         @echo No ISCC, so not making installer
982 else
983         "$(ISCC)" /O. /Fbindistprep/$(WINDOWS_INSTALLER_BASE) - < distrib/ghc.iss
984 endif
985
986 nTimes = set -e; for i in `seq 1 $(1)`; do echo Try "$$i: $(2)"; if $(2); then break; fi; done
987
988 .PHONY: publish-binary-dist
989 publish-binary-dist:
990         $(call nTimes,10,$(PublishCp) $(BIN_DIST_TAR_BZ2) $(PublishLocation)/dist)
991 ifeq "$(mingw32_TARGET_OS)" "1"
992         $(call nTimes,10,$(PublishCp) $(WINDOWS_INSTALLER) $(PublishLocation)/dist)
993 endif
994
995 .PHONY: publish-docs
996 publish-docs:
997         $(call nTimes,10,$(PublishCp) -r bindisttest/installed/share/doc/ghc/* $(PublishLocation)/docs)
998
999 # -----------------------------------------------------------------------------
1000 # Source distributions
1001
1002 # Do it like this:
1003 #
1004 #       $ make
1005 #       $ make sdist
1006 #
1007
1008 # A source dist is built from a complete build tree, because we
1009 # require some extra files not contained in a darcs checkout: the
1010 # output from Happy and Alex, for example.
1011 #
1012 # The steps performed by 'make dist' are as follows:
1013 #   - create a complete link-tree of the current build tree in /tmp
1014 #   - run 'make distclean' on that tree
1015 #   - remove a bunch of other files that we know shouldn't be in the dist
1016 #   - tar up first the extralibs package, then the main source package
1017
1018 #
1019 # Directory in which we're going to build the src dist
1020 #
1021 SRC_DIST_NAME=ghc-$(ProjectVersion)
1022 SRC_DIST_DIR=$(shell pwd)/$(SRC_DIST_NAME)
1023
1024 #
1025 # Files to include in source distributions
1026 #
1027 SRC_DIST_DIRS = mk rules docs distrib bindisttest libffi includes utils docs rts compiler ghc driver libraries ghc-tarballs
1028 SRC_DIST_FILES += \
1029         configure.ac config.guess config.sub configure \
1030         aclocal.m4 README ANNOUNCE HACKING LICENSE Makefile install-sh \
1031         ghc.spec.in ghc.spec extra-gcc-opts.in VERSION \
1032         boot boot-pkgs packages ghc.mk
1033
1034 SRC_DIST_TARBALL = $(SRC_DIST_NAME)-src.tar.bz2
1035
1036 VERSION :
1037         echo $(ProjectVersion) >VERSION
1038
1039 sdist : VERSION
1040
1041 # Use:
1042 #     $(call sdist_file,compiler,stage2,cmm,Foo/Bar,CmmLex,x)
1043 # to copy the generated file that replaces compiler/cmm/Foo/Bar/CmmLex.x, where
1044 # "stage2" is the dist dir.
1045 define sdist_file
1046         "$(CP)" $1/$2/build/$4/$5.hs $(SRC_DIST_DIR)/$1/$3/$4
1047         mv $(SRC_DIST_DIR)/$1/$3/$4/$5.$6 $(SRC_DIST_DIR)/$1/$3/$4/$5.$6.source
1048 endef
1049
1050 .PHONY: sdist-prep
1051 sdist-prep :
1052         "$(RM)" $(RM_OPTS) -r $(SRC_DIST_DIR)
1053         "$(RM)" $(RM_OPTS) $(SRC_DIST_TARBALL)
1054         mkdir $(SRC_DIST_DIR)
1055         cd $(SRC_DIST_DIR) && for i in $(SRC_DIST_DIRS); do mkdir $$i; ( cd $$i && lndir $(TOP)/$$i ); done
1056         cd $(SRC_DIST_DIR) && for i in $(SRC_DIST_FILES); do $(LN_S) $(TOP)/$$i .; done
1057         cd $(SRC_DIST_DIR) && $(MAKE) distclean
1058         rm -rf $(SRC_DIST_DIR)/libraries/tarballs/
1059         rm -rf $(SRC_DIST_DIR)/libraries/stamp/
1060         $(call sdist_file,compiler,stage2,cmm,,CmmLex,x)
1061         $(call sdist_file,compiler,stage2,cmm,,CmmParse,y)
1062         $(call sdist_file,compiler,stage2,parser,,Lexer,x)
1063         $(call sdist_file,compiler,stage2,parser,,Parser,y.pp)
1064         $(call sdist_file,compiler,stage2,parser,,ParserCore,y)
1065         $(call sdist_file,utils/hpc,dist,,,HpcParser,y)
1066         $(call sdist_file,utils/genprimopcode,dist,,,Lexer,x)
1067         $(call sdist_file,utils/genprimopcode,dist,,,Parser,y)
1068         $(call sdist_file,utils/haddock,dist,src,Haddock,Lex,x)
1069         $(call sdist_file,utils/haddock,dist,src,Haddock,Parse,y)
1070         cd $(SRC_DIST_DIR) && "$(RM)" $(RM_OPTS) -r compiler/stage[123] mk/build.mk
1071         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
1072
1073 .PHONY: sdist
1074 sdist : sdist-prep
1075         "$(TAR)" chf - $(SRC_DIST_NAME) 2>$src_log | bzip2 >$(TOP)/$(SRC_DIST_TARBALL)
1076
1077 sdist-manifest : $(SRC_DIST_TARBALL)
1078         tar tjf $(SRC_DIST_TARBALL) | sed "s|^ghc-$(ProjectVersion)/||" | sort >sdist-manifest
1079
1080 # Upload the distribution(s)
1081 # Retrying is to work around buggy firewalls that corrupt large file transfers
1082 # over SSH.
1083 ifneq "$(PublishLocation)" ""
1084 publish-sdist :
1085         $(call nTimes,10,$(PublishCp) $(SRC_DIST_TARBALL) $(PublishLocation)/dist)
1086 endif
1087
1088 ifeq "$(BootingFromHc)" "YES"
1089 # In a normal build we use GHC to compile C files (see
1090 # rules/c-suffix-rules.mk), which passes a number of its own options
1091 # to the C compiler.  So when bootstrapping we have to provide these
1092 # flags explicitly to C compilations.
1093 SRC_CC_OPTS += -DNO_REGS -DUSE_MINIINTERPRETER
1094 SRC_CC_OPTS += -D__GLASGOW_HASKELL__=$(ProjectVersionInt)
1095 SRC_CC_OPTS += -I$(GHC_INCLUDE_DIR)
1096 endif
1097
1098 # -----------------------------------------------------------------------------
1099 # sdisting libraries
1100
1101 # Use manually, with e.g.:
1102 #     make sdist_directory
1103
1104 sdist_%:
1105         inplace/bin/ghc-cabal sdist libraries/$* dist-install
1106
1107 # -----------------------------------------------------------------------------
1108 # Cleaning
1109
1110 .PHONY: clean
1111
1112 CLEAN_FILES += utils/ghc-pwd/ghc-pwd
1113 CLEAN_FILES += utils/ghc-pwd/ghc-pwd.exe
1114 CLEAN_FILES += utils/ghc-pwd/ghc-pwd.hi
1115 CLEAN_FILES += utils/ghc-pwd/ghc-pwd.o
1116 CLEAN_FILES += libraries/bootstrapping.conf
1117 CLEAN_FILES += libraries/integer-gmp/cbits/GmpDerivedConstants.h
1118 CLEAN_FILES += libraries/integer-gmp/cbits/mkGmpDerivedConstants
1119
1120 clean : clean_files clean_libraries
1121
1122 .PHONY: clean_files
1123 clean_files :
1124         "$(RM)" $(RM_OPTS) $(CLEAN_FILES)
1125
1126 ifneq "$(NO_CLEAN_GMP)" "YES"
1127 CLEAN_FILES += libraries/integer-gmp/gmp/gmp.h
1128 CLEAN_FILES += libraries/integer-gmp/gmp/libgmp.a
1129
1130 clean : clean_gmp
1131 .PHONY: clean_gmp
1132 clean_gmp:
1133         "$(RM)" $(RM_OPTS) -r libraries/integer-gmp/gmp/objs
1134         "$(RM)" $(RM_OPTS) -r libraries/integer-gmp/gmp/gmpbuild
1135 endif
1136
1137 .PHONY: clean_libraries
1138 clean_libraries: $(patsubst %,clean_libraries/%_dist-install,$(PACKAGES) $(PACKAGES_STAGE2))
1139 clean_libraries: $(patsubst %,clean_libraries/%_dist-boot,$(BOOT_PKGS))
1140
1141 clean_libraries:
1142         "$(RM)" $(RM_OPTS) -r $(patsubst %, libraries/%/dist, $(PACKAGES) $(PACKAGES_STAGE2))
1143         "$(RM)" $(RM_OPTS) $(patsubst %, libraries/%/*.buildinfo, $(PACKAGES) $(PACKAGES_STAGE2))
1144
1145 # We have to define a clean target for each library manually, because the
1146 # libraries/*/ghc.mk files are not included when we're cleaning.
1147 ifeq "$(CLEANING)" "YES"
1148 $(foreach lib,$(PACKAGES) $(PACKAGES_STAGE2),\
1149   $(eval $(call clean-target,libraries/$(lib),dist-install,libraries/$(lib)/dist-install)))
1150 endif
1151
1152 clean : clean_bindistprep
1153 .PHONY: clean_bindistprep
1154 clean_bindistprep:
1155         "$(RM)" $(RM_OPTS) -r bindistprep/
1156
1157 distclean : clean
1158         "$(RM)" $(RM_OPTS) config.cache config.status config.log mk/config.h mk/stamp-h
1159         "$(RM)" $(RM_OPTS) mk/config.mk mk/are-validating.mk mk/project.mk
1160         "$(RM)" $(RM_OPTS) mk/config.mk.old mk/project.mk.old
1161         "$(RM)" $(RM_OPTS) extra-gcc-opts docs/users_guide/ug-book.xml
1162         "$(RM)" $(RM_OPTS) compiler/ghc.cabal compiler/ghc.cabal.old
1163         "$(RM)" $(RM_OPTS) ghc/ghc-bin.cabal
1164         "$(RM)" $(RM_OPTS) libraries/base/include/HsBaseConfig.h
1165         "$(RM)" $(RM_OPTS) libraries/directory/include/HsDirectoryConfig.h
1166         "$(RM)" $(RM_OPTS) libraries/process/include/HsProcessConfig.h
1167         "$(RM)" $(RM_OPTS) libraries/unix/include/HsUnixConfig.h
1168         "$(RM)" $(RM_OPTS) libraries/old-time/include/HsTimeConfig.h
1169
1170         "$(RM)" $(RM_OPTS) $(patsubst %, libraries/%/config.log, $(PACKAGES) $(PACKAGES_STAGE2))
1171         "$(RM)" $(RM_OPTS) $(patsubst %, libraries/%/config.status, $(PACKAGES) $(PACKAGES_STAGE2))
1172         "$(RM)" $(RM_OPTS) $(patsubst %, libraries/%/include/Hs*Config.h, $(PACKAGES) $(PACKAGES_STAGE2))
1173         "$(RM)" $(RM_OPTS) -r $(patsubst %, libraries/%/autom4te.cache, $(PACKAGES) $(PACKAGES_STAGE2))
1174
1175 maintainer-clean : distclean
1176         "$(RM)" $(RM_OPTS) configure mk/config.h.in
1177         "$(RM)" $(RM_OPTS) -r autom4te.cache libraries/*/autom4te.cache
1178         "$(RM)" $(RM_OPTS) ghc.spec
1179         "$(RM)" $(RM_OPTS) $(patsubst %, libraries/%/GNUmakefile, \
1180                 $(PACKAGES) $(PACKAGES_STAGE2))
1181         "$(RM)" $(RM_OPTS) $(patsubst %, libraries/%/ghc.mk, $(PACKAGES) $(PACKAGES_STAGE2))
1182         "$(RM)" $(RM_OPTS) $(patsubst %, libraries/%/configure, \
1183                 $(PACKAGES) $(PACKAGES_STAGE2))
1184         "$(RM)" $(RM_OPTS) libraries/base/include/HsBaseConfig.h.in
1185         "$(RM)" $(RM_OPTS) libraries/directory/include/HsDirectoryConfig.h.in
1186         "$(RM)" $(RM_OPTS) libraries/process/include/HsProcessConfig.h.in
1187         "$(RM)" $(RM_OPTS) libraries/unix/include/HsUnixConfig.h.in
1188         "$(RM)" $(RM_OPTS) libraries/old-time/include/HsTimeConfig.h.in
1189
1190 .PHONY: all_libraries
1191
1192 .PHONY: bootstrapping-files
1193 bootstrapping-files: $(OTHER_LIBS)
1194 bootstrapping-files: includes/ghcautoconf.h
1195 bootstrapping-files: includes/DerivedConstants.h
1196 bootstrapping-files: includes/GHCConstants.h
1197
1198 .DELETE_ON_ERROR:
1199