Allow extra packages to be added to the build, by setting $(EXTRA_PACKAGES)
[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
273 # -----------------------------------------------------------------------------
274 # Registering hand-written package descriptions (used in libffi and rts)
275
276 include rules/manual-package-config.mk
277
278 # -----------------------------------------------------------------------------
279 # Docs
280
281 include rules/docbook.mk
282
283 # -----------------------------------------------------------------------------
284 # Making bindists
285
286 include rules/bindist.mk
287
288 # -----------------------------------------------------------------------------
289 # Building libraries
290
291 define addPackage # args: $1 = package, $2 = condition
292     ifneq "$2" ""
293         ifeq "$$(CLEANING)" "YES"
294             PACKAGES += $1
295         else
296             ifeq $2
297                 PACKAGES += $1
298             endif
299         endif
300     else
301         PACKAGES += $1
302     endif
303 endef
304
305 $(eval $(call addPackage,ghc-prim))
306 ifeq "$(CLEANING)" "YES"
307 $(eval $(call addPackage,integer-gmp))
308 $(eval $(call addPackage,integer-simple))
309 else
310 $(eval $(call addPackage,$(INTEGER_LIBRARY)))
311 endif
312 $(eval $(call addPackage,base))
313 $(eval $(call addPackage,filepath))
314 $(eval $(call addPackage,array))
315 $(eval $(call addPackage,bytestring))
316 $(eval $(call addPackage,containers))
317
318 $(eval $(call addPackage,Win32,($$(Windows),YES)))
319 $(eval $(call addPackage,unix,($$(Windows),NO)))
320
321 $(eval $(call addPackage,old-locale))
322 $(eval $(call addPackage,old-time))
323 $(eval $(call addPackage,time))
324 $(eval $(call addPackage,directory))
325 $(eval $(call addPackage,process))
326 $(eval $(call addPackage,random))
327 $(eval $(call addPackage,extensible-exceptions))
328 $(eval $(call addPackage,haskell98))
329 $(eval $(call addPackage,hpc))
330 $(eval $(call addPackage,pretty))
331 $(eval $(call addPackage,template-haskell))
332 $(eval $(call addPackage,Cabal))
333 $(eval $(call addPackage,binary))
334 $(eval $(call addPackage,bin-package-db))
335 $(eval $(call addPackage,mtl))
336 $(eval $(call addPackage,utf8-string))
337
338 $(eval $(call addPackage,terminfo,($$(Windows),NO)))
339
340 $(eval $(call addPackage,haskeline))
341
342 $(foreach pkg,$(EXTRA_PACKAGES),$(eval $(call addPackage,$(pkg))))
343
344 ifneq "$(BootingFromHc)" "YES"
345 PACKAGES_STAGE2 += \
346         dph/dph-base \
347         dph/dph-prim-interface \
348         dph/dph-prim-seq \
349         dph/dph-prim-par \
350         dph/dph-seq \
351         dph/dph-par
352 endif
353
354 # We assume that the stage0 compiler has a suitable bytestring package,
355 # so we don't have to include it below.
356 BOOT_PKGS = Cabal hpc extensible-exceptions binary bin-package-db
357
358 # The actual .a and .so/.dll files: needed for dependencies.
359 ALL_STAGE1_LIBS  = $(foreach lib,$(PACKAGES),$(libraries/$(lib)_dist-install_v_LIB))
360 ifeq "$(BuildSharedLibs)" "YES"
361 ALL_STAGE1_LIBS += $(foreach lib,$(PACKAGES),$(libraries/$(lib)_dist-install_dyn_LIB))
362 endif
363 BOOT_LIBS = $(foreach lib,$(BOOT_PKGS),$(libraries/$(lib)_dist-boot_v_LIB))
364
365 OTHER_LIBS = libffi/dist-install/build/libHSffi$(v_libsuf) libffi/dist-install/build/HSffi.o
366 ifeq "$(BuildSharedLibs)" "YES"
367 OTHER_LIBS  += libffi/dist-install/build/libHSffi$(dyn_libsuf)
368 endif
369
370 # We cannot run ghc-cabal to configure a package until we have
371 # configured and registered all of its dependencies.  So the following
372 # hack forces all the configure steps to happen in exactly the following order:
373 #
374 #  $(PACKAGES) ghc(stage2) $(PACKAGES_STAGE2)
375 #
376 # Ideally we should use the correct dependencies here to allow more
377 # parallelism, but we don't know the dependencies until we've
378 # generated the pacakge-data.mk files.
379 define fixed_pkg_dep
380 libraries/$1/$2/package-data.mk : $$(GHC_PKG_INPLACE) $$(fixed_pkg_prev)
381 fixed_pkg_prev:=libraries/$1/$2/package-data.mk
382 endef
383
384 ifneq "$(BINDIST)" "YES"
385 fixed_pkg_prev=
386 $(foreach pkg,$(PACKAGES),$(eval $(call fixed_pkg_dep,$(pkg),dist-install)))
387
388 # the GHC package doesn't live in libraries/, so we add its dependency manually:
389 compiler/stage2/package-data.mk: $(fixed_pkg_prev)
390 fixed_pkg_prev:=compiler/stage2/package-data.mk
391
392 # and continue with PACKAGES_STAGE2, which depend on GHC:
393 $(foreach pkg,$(PACKAGES_STAGE2),$(eval $(call fixed_pkg_dep,$(pkg),dist-install)))
394
395 ghc/stage1/package-data.mk: compiler/stage1/package-data.mk
396 ghc/stage2/package-data.mk: compiler/stage2/package-data.mk
397 # haddock depends on ghc and some libraries, but depending on GHC's
398 # package-data.mk is sufficient, as that in turn depends on all the
399 # libraries
400 utils/haddock/dist/package-data.mk: compiler/stage2/package-data.mk
401
402 utils/hsc2hs/dist-install/package-data.mk: compiler/stage2/package-data.mk
403 utils/compare_sizes/dist/package-data.mk: compiler/stage2/package-data.mk
404
405 # add the final two package.conf dependencies: ghc-prim depends on RTS,
406 # and RTS depends on libffi.
407 libraries/ghc-prim/dist-install/package-data.mk : rts/package.conf.inplace
408 rts/package.conf.inplace : libffi/package.conf.inplace
409 endif
410
411 # -----------------------------------------------------------------------------
412 # Directories
413
414 # Don't try to delete directories:
415 .PRECIOUS: %/.
416
417 # Create build directories on demand.  NB. the | below: this indicates
418 # that $(MKDIRHIER) is an order-only dependency, which means that this
419 # rule fires after building mkdirhier, but we won't try to recreate
420 # directories if mkdirhier changes.
421 %/. : | $(MKDIRHIER)
422         "$(MKDIRHIER)" $@
423
424 # -----------------------------------------------------------------------------
425 # Special magic for the ghc-prim package
426
427 # We want the ghc-prim package to include the GHC.Prim module when it
428 # is registered, but not when it is built, because GHC.Prim is not a
429 # real source module, it is built-in to GHC.  The old build system did
430 # this using Setup.hs, but we can't do that here, so we have a flag to
431 # enable GHC.Prim in the .cabal file (so that the ghc-prim package
432 # remains compatible with the old build system for the time being).
433 # GHC.Prim module in the ghc-prim package with a flag:
434 #
435 libraries/ghc-prim_CONFIGURE_OPTS += --flag=include-ghc-prim
436
437 # And then we strip it out again before building the package:
438 define libraries/ghc-prim_PACKAGE_MAGIC
439 libraries/ghc-prim_dist-install_MODULES := $$(filter-out GHC.Prim,$$(libraries/ghc-prim_dist-install_MODULES))
440 endef
441
442 PRIMOPS_TXT = $(GHC_COMPILER_DIR)/prelude/primops.txt
443
444 libraries/ghc-prim/dist-install/build/GHC/PrimopWrappers.hs : $(GENPRIMOP_INPLACE) $(PRIMOPS_TXT) | $$(dir $$@)/.
445         "$(GENPRIMOP_INPLACE)" --make-haskell-wrappers <$(PRIMOPS_TXT) >$@
446
447 # Required so that Haddock documents the primops.
448 libraries/ghc-prim_dist-install_EXTRA_HADDOCK_SRCS = libraries/ghc-prim/dist-install/build/autogen/GHC/Prim.hs
449
450 # -----------------------------------------------------------------------------
451 # Include build instructions from all subdirs
452
453 # For the rationale behind the build phases, see
454 #   http://hackage.haskell.org/trac/ghc/wiki/Building/Architecture/Idiom/PhaseOrdering
455
456 # Setting foo_dist_DISABLE=YES means "in directory foo, for build
457 # "dist", just read the package-data.mk file, do not build anything".
458
459 # We carefully engineer things so that we can build the
460 # package-data.mk files early on: they depend only on a few tools also
461 # built early.  Having got the package-data.mk files built, we can
462 # restart make with up-to-date information about all the packages
463 # (this is phase 0).  The remaining problem is the .depend files:
464 #
465 #   - .depend files in libraries need the stage 1 compiler to build
466 #   - ghc/stage1/.depend needs compiler/stage1 built
467 #   - compiler/stage1/.depend needs the bootstrap libs built
468 #
469 # GHC 6.11+ can build a .depend file without having built the
470 # dependencies of the package, but we can't rely on the bootstrapping
471 # compiler being able to do this, which is why we have to separate the
472 # three phases above.
473
474 # So this is the final ordering:
475
476 # Phase 0 : all package-data.mk files
477 #           (requires ghc-cabal, ghc-pkg, mkdirhier, dummy-ghc etc.)
478 # Phase 1 : .depend files for bootstrap libs
479 #           (requires hsc2hs)
480 # Phase 2 : compiler/stage1/.depend
481 #           (requires bootstrap libs and genprimopcode)
482 # Phase 3 : ghc/stage1/.depend
483 #           (requires compiler/stage1)
484 #
485 # The rest : libraries/*/dist-install, compiler/stage2, ghc/stage2
486
487 BUILD_DIRS =
488
489 ifneq "$(BINDIST)" "YES"
490 BUILD_DIRS += \
491    $(GHC_MKDIRHIER_DIR)
492 endif
493
494 BUILD_DIRS += \
495    docs/users_guide \
496    docs/man \
497    libraries/Cabal/doc \
498    $(GHC_UNLIT_DIR) \
499    $(GHC_HP2PS_DIR)
500
501 ifneq "$(GhcUnregisterised)" "YES"
502 BUILD_DIRS += \
503    $(GHC_MANGLER_DIR) \
504    $(GHC_SPLIT_DIR)
505 endif
506
507 ifneq "$(BINDIST)" "YES"
508 BUILD_DIRS += \
509    $(GHC_GENPRIMOP_DIR)
510 endif
511
512 BUILD_DIRS += \
513    driver \
514    driver/ghci \
515    driver/ghc \
516    libffi \
517    includes \
518    rts
519
520 ifneq "$(BINDIST)" "YES"
521 BUILD_DIRS += \
522    $(GHC_CABAL_DIR) \
523    $(GHC_GENAPPLY_DIR)
524 endif
525
526 ifneq "$(HADDOCK_DOCS)" "NO"
527 BUILD_DIRS += \
528    utils/haddock \
529    utils/haddock/doc
530 endif
531
532 ifneq "$(CLEANING)" "YES"
533 BUILD_DIRS += \
534    $(patsubst %, libraries/%, $(PACKAGES))
535 endif
536
537 ifneq "$(BootingFromHc)" "YES"
538 BUILD_DIRS += \
539    libraries/dph
540 endif
541
542 ifeq "$(INTEGER_LIBRARY)" "integer-gmp"
543 BUILD_DIRS += libraries/integer-gmp/gmp
544 endif
545
546 BUILD_DIRS += \
547    compiler \
548    $(GHC_HSC2HS_DIR) \
549    $(GHC_PKG_DIR) \
550    utils/hpc \
551    utils/runghc \
552    ghc
553 ifeq "$(Windows)" "YES"
554 BUILD_DIRS += \
555    $(GHC_TOUCHY_DIR)
556 endif
557
558 BUILD_DIRS += utils/count_lines
559 BUILD_DIRS += utils/compare_sizes
560
561 ifneq "$(CLEANING)" "YES"
562 # After compiler/, because these packages depend on it
563 BUILD_DIRS += \
564    $(patsubst %, libraries/%, $(PACKAGES_STAGE2))
565 endif
566
567 # XXX libraries/% must come before any programs built with stage1, see
568 # Note [lib-depends].
569
570 ifeq "$(phase)" "0"
571 $(foreach lib,$(BOOT_PKGS),$(eval \
572   libraries/$(lib)_dist-boot_DISABLE = YES))
573 endif
574
575 ifneq "$(findstring $(phase),0 1)" ""
576 # We can build deps for compiler/stage1 in phase 2
577 compiler_stage1_DISABLE = YES
578 endif
579
580 ifneq "$(findstring $(phase),0 1 2)" ""
581 ghc_stage1_DISABLE = YES
582 endif
583
584 ifneq "$(CLEANING)" "YES"
585 ifeq "$(INTEGER_LIBRARY)" "integer-gmp"
586 libraries/base_dist-install_CONFIGURE_OPTS += --flags=-integer-simple
587 else
588     ifeq "$(INTEGER_LIBRARY)" "integer-simple"
589         libraries/base_dist-install_CONFIGURE_OPTS += --flags=integer-simple
590     else
591 $(error Unknown integer library: $(INTEGER_LIBRARY))
592     endif
593 endif
594 endif
595
596 ifneq "$(findstring $(phase),0 1 2 3)" ""
597 # In phases 0-3, we disable stage2-3, the full libraries and haddock
598 utils/haddock_dist_DISABLE = YES
599 utils/runghc_dist_DISABLE = YES
600 utils/hpc_dist_DISABLE = YES
601 utils/hsc2hs_dist-install_DISABLE = YES
602 utils/ghc-pkg_dist-install_DISABLE = YES
603 utils/compare_sizes_dist_DISABLE = YES
604 compiler_stage2_DISABLE = YES
605 compiler_stage3_DISABLE = YES
606 ghc_stage2_DISABLE = YES
607 ghc_stage3_DISABLE = YES
608 $(foreach lib,$(PACKAGES) $(PACKAGES_STAGE2),$(eval \
609   libraries/$(lib)_dist-install_DISABLE = YES))
610 endif
611
612 # These packages don't pass the Cabal checks because hs-source-dirs
613 # points outside the source directory. This isn't a real problem in
614 # these cases, so we just skip checking them.
615 CHECKED_libraries/dph/dph-seq = YES
616 CHECKED_libraries/dph/dph-par = YES
617 # In compiler's case, include-dirs points outside of the source tree
618 CHECKED_compiler = YES
619
620 include $(patsubst %, %/ghc.mk, $(BUILD_DIRS))
621
622 # We need -fno-warn-deprecated-flags to avoid failure with -Werror
623 GhcLibHcOpts += -fno-warn-deprecated-flags
624 ifeq "$(ghc_ge_609)" "YES"
625 GhcBootLibHcOpts += -fno-warn-deprecated-flags
626 endif
627
628 # Add $(GhcLibHcOpts) to all library builds
629 $(foreach pkg,$(PACKAGES) $(PACKAGES_STAGE2),$(eval libraries/$(pkg)_dist-install_HC_OPTS += $$(GhcLibHcOpts)))
630
631 # XXX Hack; remove this
632 $(foreach pkg,$(PACKAGES_STAGE2),$(eval libraries/$(pkg)_dist-install_HC_OPTS += -Wwarn))
633
634 # A useful pseudo-target
635 .PHONY: stage1_libs
636 stage1_libs : $(ALL_STAGE1_LIBS)
637
638 ifeq "$(HADDOCK_DOCS)" "YES"
639 libraries/index.html: $(ALL_HADDOCK_FILES)
640         cd libraries && sh gen_contents_index --inplace
641 $(eval $(call all-target,library_doc_index,libraries/index.html))
642 INSTALL_LIBRARY_DOCS += libraries/*.html libraries/*.gif libraries/*.css libraries/*.js
643 CLEAN_FILES += libraries/doc-index* libraries/haddock*.css \
644                libraries/haddock*.js libraries/index*.html libraries/*.gif
645 endif
646
647 ifeq "$(CHECK_PACKAGES)" "YES"
648 all: check_packages
649 endif
650
651 # -----------------------------------------------------------------------------
652 # Bootstrapping libraries
653
654 # We need to build a few libraries with the installed GHC, since GHC itself
655 # and some of the tools depend on them:
656
657 ifneq "$(BINDIST)" "YES"
658
659 ifneq "$(BOOTSTRAPPING_CONF)" ""
660 ifeq "$(wildcard $(BOOTSTRAPPING_CONF))" ""
661 $(shell echo "[]" >$(BOOTSTRAPPING_CONF))
662 endif
663 endif
664
665 $(eval $(call clean-target,$(BOOTSTRAPPING_CONF),,$(BOOTSTRAPPING_CONF)))
666
667 # These three libraries do not depend on each other, so we can build
668 # them straight off:
669
670 $(eval $(call build-package,libraries/hpc,dist-boot,0))
671 $(eval $(call build-package,libraries/extensible-exceptions,dist-boot,0))
672 $(eval $(call build-package,libraries/Cabal,dist-boot,0))
673 $(eval $(call build-package,libraries/binary,dist-boot,0))
674 $(eval $(call build-package,libraries/bin-package-db,dist-boot,0))
675
676 # register the boot packages in strict sequence, because running
677 # multiple ghc-pkgs in parallel doesn't work (registrations may get
678 # lost).
679 fixed_pkg_prev=
680 $(foreach pkg,$(BOOT_PKGS),$(eval $(call fixed_pkg_dep,$(pkg),dist-boot)))
681
682 compiler/stage1/package-data.mk : \
683     libraries/Cabal/dist-boot/package-data.mk \
684     libraries/hpc/dist-boot/package-data.mk \
685     libraries/extensible-exceptions/dist-boot/package-data.mk \
686     libraries/bin-package-db/dist-boot/package-data.mk
687
688 # These are necessary because the bootstrapping compiler may not know
689 # about cross-package dependencies:
690 $(compiler_stage1_depfile_haskell) : $(BOOT_LIBS)
691 $(ghc_stage1_depfile_haskell) : $(compiler_stage1_v_LIB)
692
693 # A few careful dependencies between bootstrapping packages.  When we
694 # can rely on the stage 0 compiler being able to generate
695 # cross-package dependencies with -M (fixed in GHC 6.12.1) we can drop
696 # these, and also some of the phases.
697 #
698 # If you miss any out here, then 'make -j8' will probably tell you.
699 #
700 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)
701
702 $(foreach pkg,$(BOOT_PKGS),$(eval libraries/$(pkg)_dist-boot_HC_OPTS += $$(GhcBootLibHcOpts)))
703
704 # Make sure we have all the GHCi libs by the time we've built
705 # ghc-stage2.  DPH includes a bit of Template Haskell which needs the
706 # GHCI libs, and we don't have a better way to express that dependency.
707 #
708 GHCI_LIBS = $(foreach lib,$(PACKAGES),$(libraries/$(lib)_dist-install_GHCI_LIB)) \
709             $(compiler_stage2_GHCI_LIB)
710
711 ghc/stage2/build/tmp/$(ghc_stage2_PROG) : $(GHCI_LIBS)
712
713 endif
714
715 # -----------------------------------------------------------------------------
716 # Creating a local mingw copy on Windows
717
718 ifeq "$(Windows)" "YES"
719
720 install : install_mingw
721 .PHONY: install_mingw
722 install_mingw : $(INPLACE_MINGW)
723         "$(CP)" -Rp $(INPLACE_MINGW) $(prefix)
724
725 install : install_perl
726 .PHONY: install_perl
727 install_perl : $(INPLACE_PERL)
728         "$(CP)" -Rp $(INPLACE_PERL) $(prefix)
729
730 endif # Windows
731
732 ifneq "$(BINDIST)" "YES"
733 $(ghc-prim-$(libraries/ghc-prim_dist-install_VERSION)_HADDOCK_FILE): \
734     libraries/ghc-prim/dist-install/build/autogen/GHC/Prim.hs \
735     libraries/ghc-prim/dist-install/build/autogen/GHC/PrimopWrappers.hs
736 endif # BINDIST
737
738 libraries/ghc-prim/dist-install/build/autogen/GHC/Prim.hs: \
739                             $(PRIMOPS_TXT) $(GENPRIMOP_INPLACE) \
740                           | $$(dir $$@)/.
741         "$(GENPRIMOP_INPLACE)" --make-haskell-source < $< > $@
742
743 libraries/ghc-prim/dist-install/build/autogen/GHC/PrimopWrappers.hs: \
744                             $(PRIMOPS_TXT) $(GENPRIMOP_INPLACE) \
745                           | $$(dir $$@)/.
746         "$(GENPRIMOP_INPLACE)" --make-haskell-wrappers < $< > $@
747
748 # -----------------------------------------------------------------------------
749 # Installation
750
751 install: install_packages install_libs install_libexecs install_headers \
752          install_libexec_scripts install_bins install_docs \
753                  install_topdirs install_topdir_scripts
754
755 install_bins: $(INSTALL_BINS)
756         $(INSTALL_DIR) "$(DESTDIR)$(bindir)"
757         for i in $(INSTALL_BINS); do \
758                 $(INSTALL_PROGRAM) $(INSTALL_BIN_OPTS) $$i "$(DESTDIR)$(bindir)" ;  \
759         done
760
761 install_libs: $(INSTALL_LIBS)
762         $(INSTALL_DIR) "$(DESTDIR)$(ghclibdir)"
763         for i in $(INSTALL_LIBS); do \
764                 case $$i in \
765                   *.a) \
766                     $(INSTALL_DATA) $(INSTALL_OPTS) $$i "$(DESTDIR)$(ghclibdir)"; \
767                     $(RANLIB) $(DESTDIR)$(ghclibdir)/`basename $$i` ;; \
768                   *.dll) \
769                     $(INSTALL_DATA) -s $(INSTALL_OPTS) $$i "$(DESTDIR)$(ghclibdir)" ;; \
770                   *.so) \
771                     $(INSTALL_SHLIB) $(INSTALL_OPTS) $$i "$(DESTDIR)$(ghclibdir)" ;; \
772                   *.dylib) \
773                     $(INSTALL_SHLIB) $(INSTALL_OPTS) $$i "$(DESTDIR)$(ghclibdir)";; \
774                   *) \
775                     $(INSTALL_DATA) $(INSTALL_OPTS) $$i "$(DESTDIR)$(ghclibdir)"; \
776                 esac; \
777         done
778
779 install_libexec_scripts: $(INSTALL_LIBEXEC_SCRIPTS)
780 ifeq "$(INSTALL_LIBEXEC_SCRIPTS)" ""
781         @:
782 else
783         $(INSTALL_DIR) "$(DESTDIR)$(ghclibexecdir)"
784         for i in $(INSTALL_LIBEXEC_SCRIPTS); do \
785                 $(INSTALL_SCRIPT) $(INSTALL_OPTS) $$i "$(DESTDIR)$(ghclibexecdir)"; \
786         done
787 endif
788
789 install_libexecs:  $(INSTALL_LIBEXECS)
790 ifeq "$(INSTALL_LIBEXECS)" ""
791         @:
792 else
793         $(INSTALL_DIR) "$(DESTDIR)$(ghclibexecdir)"
794         for i in $(INSTALL_LIBEXECS); do \
795                 $(INSTALL_PROGRAM) $(INSTALL_BIN_OPTS) $$i "$(DESTDIR)$(ghclibexecdir)"; \
796         done
797 # We rename ghc-stage2, so that the right program name is used in error
798 # messages etc.
799         "$(MV)" "$(DESTDIR)$(ghclibexecdir)/ghc-stage2" "$(DESTDIR)$(ghclibexecdir)/ghc"
800 endif
801
802 install_topdir_scripts: $(INSTALL_TOPDIR_SCRIPTS)
803         $(INSTALL_DIR) "$(DESTDIR)$(topdir)"
804         for i in $(INSTALL_TOPDIR_SCRIPTS); do \
805                 $(INSTALL_SCRIPT) $(INSTALL_OPTS) $$i "$(DESTDIR)$(topdir)"; \
806         done
807
808 install_topdirs: $(INSTALL_TOPDIRS)
809         $(INSTALL_DIR) "$(DESTDIR)$(topdir)"
810         for i in $(INSTALL_TOPDIRS); do \
811                 $(INSTALL_PROGRAM) $(INSTALL_BIN_OPTS) $$i "$(DESTDIR)$(topdir)"; \
812         done
813
814 install_headers: $(INSTALL_HEADERS)
815         $(INSTALL_DIR) "$(DESTDIR)$(ghcheaderdir)"
816         for i in $(INSTALL_HEADERS); do \
817                 $(INSTALL_HEADER) $(INSTALL_OPTS) $$i "$(DESTDIR)$(ghcheaderdir)"; \
818         done
819
820 install_docs: $(INSTALL_DOCS)
821         $(INSTALL_DIR) "$(DESTDIR)$(docdir)"
822 ifneq "$(INSTALL_DOCS)" ""
823         for i in $(INSTALL_DOCS); do \
824                 $(INSTALL_DOC) $(INSTALL_OPTS) $$i "$(DESTDIR)$(docdir)"; \
825         done
826 endif
827         $(INSTALL_DIR) $(INSTALL_OPTS) "$(DESTDIR)$(docdir)/html"
828         $(INSTALL_DOC) $(INSTALL_OPTS) docs/index.html "$(DESTDIR)$(docdir)/html"
829 ifneq "$(INSTALL_LIBRARY_DOCS)" ""
830         $(INSTALL_DIR) $(INSTALL_OPTS) "$(DESTDIR)$(docdir)/html/libraries"
831         for i in $(INSTALL_LIBRARY_DOCS); do \
832                 $(INSTALL_DOC) $(INSTALL_OPTS) $$i "$(DESTDIR)$(docdir)/html/libraries/"; \
833         done
834         $(INSTALL_DATA) $(INSTALL_OPTS) libraries/prologue.txt "$(DESTDIR)$(docdir)/html/libraries/"
835         $(INSTALL_SCRIPT) $(INSTALL_OPTS) libraries/gen_contents_index "$(DESTDIR)$(docdir)/html/libraries/"
836 endif
837 ifneq "$(INSTALL_HTML_DOC_DIRS)" ""
838         for i in $(INSTALL_HTML_DOC_DIRS); do \
839                 $(INSTALL_DIR) $(INSTALL_OPTS) "$(DESTDIR)$(docdir)/html/`basename $$i`"; \
840                 $(INSTALL_DOC) $(INSTALL_OPTS) $$i/* "$(DESTDIR)$(docdir)/html/`basename $$i`"; \
841         done
842 endif
843
844 INSTALLED_PACKAGE_CONF=$(DESTDIR)$(topdir)/package.conf.d
845
846 # Install packages in the right order, so that ghc-pkg doesn't complain.
847 # Also, install ghc-pkg first.
848 ifeq "$(Windows)" "NO"
849 INSTALLED_GHC_REAL=$(DESTDIR)$(ghclibexecdir)/ghc
850 INSTALLED_GHC_PKG_REAL=$(DESTDIR)$(ghclibexecdir)/ghc-pkg
851 else
852 INSTALLED_GHC_REAL=$(DESTDIR)$(bindir)/ghc.exe
853 INSTALLED_GHC_PKG_REAL=$(DESTDIR)$(bindir)/ghc-pkg.exe
854 endif
855
856 INSTALLED_PACKAGES = $(filter-out haskeline mtl terminfo,$(PACKAGES))
857 HIDDEN_PACKAGES = binary
858
859 define set_INSTALL_DISTDIR
860 # $1 = libraries/base, $2 = dist-install
861 # =>
862 # INSTALL_DISTDIR_libraries/base = dist-install
863 INSTALL_DISTDIR_$1 = $2
864 endef
865
866 $(eval $(foreach p,$(INSTALLED_PACKAGES) $(PACKAGES_STAGE2),\
867 $(call set_INSTALL_DISTDIR,libraries/$p,dist-install)))
868 INSTALL_DISTDIR_compiler = stage2
869
870 ALL_INSTALLED_PACKAGES = $(addprefix libraries/,$(INSTALLED_PACKAGES)) \
871                          compiler \
872                          $(addprefix libraries/,$(PACKAGES_STAGE2))
873
874 install_packages: install_libexecs
875 install_packages: libffi/package.conf.install rts/package.conf.install
876         $(INSTALL_DIR) "$(DESTDIR)$(topdir)"
877         "$(RM)" -r $(RM_OPTS) "$(INSTALLED_PACKAGE_CONF)"
878         $(INSTALL_DIR) "$(INSTALLED_PACKAGE_CONF)"
879         "$(INSTALLED_GHC_PKG_REAL)" --force --global-conf "$(INSTALLED_PACKAGE_CONF)" update libffi/package.conf.install
880         "$(INSTALLED_GHC_PKG_REAL)" --force --global-conf "$(INSTALLED_PACKAGE_CONF)" update rts/package.conf.install
881         $(foreach p, $(ALL_INSTALLED_PACKAGES),\
882             "$(GHC_CABAL_INPLACE)" install \
883                  "$(INSTALLED_GHC_REAL)" \
884                  "$(INSTALLED_GHC_PKG_REAL)" \
885                  "$(STRIP)" \
886                  "$(DESTDIR)$(topdir)" \
887                  $p $(INSTALL_DISTDIR_$p) \
888                  '$(DESTDIR)' '$(prefix)' '$(ghclibdir)' '$(docdir)/html/libraries' \
889                  $(RelocatableBuild) &&) true
890         $(foreach p, $(HIDDEN_PACKAGES),\
891             "$(INSTALLED_GHC_PKG_REAL)" --global-conf "$(INSTALLED_PACKAGE_CONF)" \
892                                       hide $p &&) true
893
894 # -----------------------------------------------------------------------------
895 # Binary distributions
896
897 ifneq "$(CLEANING)" "YES"
898 # This rule seems to hold some files open on Windows which prevents
899 # cleaning, perhaps due to the $(wildcard).
900
901 $(eval $(call bindist,.,\
902     LICENSE \
903     README \
904     INSTALL \
905     configure config.sub config.guess install-sh \
906     extra-gcc-opts.in \
907     Makefile \
908     mk/config.mk.in \
909     $(INPLACE_BIN)/mkdirhier \
910     $(INPLACE_BIN)/ghc-cabal \
911     utils/ghc-pwd/ghc-pwd \
912         $(BINDIST_WRAPPERS) \
913         $(BINDIST_LIBS) \
914         $(BINDIST_HI) \
915         $(BINDIST_EXTRAS) \
916         $(includes_H_CONFIG) \
917         $(includes_H_PLATFORM) \
918     $(includes_H_FILES) \
919         includes/ghcconfig.h \
920         includes/rts/Config.h \
921     $(INSTALL_HEADERS) \
922     $(INSTALL_LIBEXECS) \
923     $(INSTALL_LIBEXEC_SCRIPTS) \
924     $(INSTALL_TOPDIRS) \
925     $(INSTALL_TOPDIR_SCRIPTS) \
926     $(INSTALL_BINS) \
927     $(INSTALL_MANPAGES) \
928     $(INSTALL_DOCS) \
929     $(INSTALL_LIBRARY_DOCS) \
930     $(addsuffix /*,$(INSTALL_HTML_DOC_DIRS)) \
931         docs/index.html \
932         compiler/stage2/doc \
933         $(wildcard libraries/*/dist-install/doc/) \
934     $(filter-out extra-gcc-opts,$(INSTALL_LIBS)) \
935     $(filter-out %/project.mk mk/config.mk %/mk/install.mk,$(MAKEFILE_LIST)) \
936         mk/project.mk \
937         mk/install.mk.in \
938         bindist.mk \
939         libraries/gen_contents_index \
940         libraries/prologue.txt \
941         libraries/dph/LICENSE \
942  ))
943 endif
944 # mk/project.mk gets an absolute path, so we manually include it in
945 # the bindist with a relative path
946
947 BIN_DIST_MK = $(BIN_DIST_PREP_DIR)/bindist.mk
948
949 unix-binary-dist-prep:
950         "$(RM)" $(RM_OPTS) -r bindistprep/
951         "$(MKDIRHIER)" $(BIN_DIST_PREP_DIR)
952         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
953         echo "HADDOCK_DOCS       = $(HADDOCK_DOCS)"       >> $(BIN_DIST_MK)
954         echo "LATEX_DOCS         = $(LATEX_DOCS)"         >> $(BIN_DIST_MK)
955         echo "BUILD_DOCBOOK_HTML = $(BUILD_DOCBOOK_HTML)" >> $(BIN_DIST_MK)
956         echo "BUILD_DOCBOOK_PS   = $(BUILD_DOCBOOK_PS)"   >> $(BIN_DIST_MK)
957         echo "BUILD_DOCBOOK_PDF  = $(BUILD_DOCBOOK_PDF)"  >> $(BIN_DIST_MK)
958         echo "BUILD_MAN          = $(BUILD_MAN)"          >> $(BIN_DIST_MK)
959         cd $(BIN_DIST_PREP_DIR) && autoreconf
960         "$(RM)" $(RM_OPTS) $(BIN_DIST_PREP_TAR)
961 # h means "follow symlinks", e.g. if aclocal.m4 is a symlink to a source
962 # tree then we want to include the real file, not a symlink to it
963         cd bindistprep && "$(TAR)" hcf - -T ../$(BIN_DIST_LIST) | bzip2 -c > ../$(BIN_DIST_PREP_TAR_BZ2)
964
965 windows-binary-dist-prep:
966         "$(RM)" $(RM_OPTS) -r bindistprep/
967         $(MAKE) prefix=$(TOP)/$(BIN_DIST_PREP_DIR) install
968         cd bindistprep && "$(TAR)" cf - $(BIN_DIST_NAME) | bzip2 -c > ../$(BIN_DIST_PREP_TAR_BZ2)
969
970 windows-installer:
971 ifeq "$(ISCC)" ""
972         @echo No ISCC, so not making installer
973 else
974         "$(ISCC)" /O. /Fbindistprep/$(WINDOWS_INSTALLER_BASE) - < distrib/ghc.iss
975 endif
976
977 nTimes = set -e; for i in `seq 1 $(1)`; do echo Try "$$i: $(2)"; if $(2); then break; fi; done
978
979 .PHONY: publish-binary-dist
980 publish-binary-dist:
981         $(call nTimes,10,$(PublishCp) $(BIN_DIST_TAR_BZ2) $(PublishLocation)/dist)
982 ifeq "$(mingw32_TARGET_OS)" "1"
983         $(call nTimes,10,$(PublishCp) $(WINDOWS_INSTALLER) $(PublishLocation)/dist)
984 endif
985
986 .PHONY: publish-docs
987 publish-docs:
988         $(call nTimes,10,$(PublishCp) -r bindisttest/installed/share/doc/ghc/* $(PublishLocation)/docs)
989
990 # -----------------------------------------------------------------------------
991 # Source distributions
992
993 # Do it like this:
994 #
995 #       $ make
996 #       $ make sdist
997 #
998
999 # A source dist is built from a complete build tree, because we
1000 # require some extra files not contained in a darcs checkout: the
1001 # output from Happy and Alex, for example.
1002 #
1003 # The steps performed by 'make dist' are as follows:
1004 #   - create a complete link-tree of the current build tree in /tmp
1005 #   - run 'make distclean' on that tree
1006 #   - remove a bunch of other files that we know shouldn't be in the dist
1007 #   - tar up first the extralibs package, then the main source package
1008
1009 #
1010 # Directory in which we're going to build the src dist
1011 #
1012 SRC_DIST_NAME=ghc-$(ProjectVersion)
1013 SRC_DIST_DIR=$(shell pwd)/$(SRC_DIST_NAME)
1014
1015 #
1016 # Files to include in source distributions
1017 #
1018 SRC_DIST_DIRS = mk rules docs distrib bindisttest libffi includes utils docs rts compiler ghc driver libraries ghc-tarballs
1019 SRC_DIST_FILES += \
1020         configure.ac config.guess config.sub configure \
1021         aclocal.m4 README ANNOUNCE HACKING LICENSE Makefile install-sh \
1022         ghc.spec.in ghc.spec extra-gcc-opts.in VERSION \
1023         boot boot-pkgs packages ghc.mk
1024
1025 SRC_DIST_TARBALL = $(SRC_DIST_NAME)-src.tar.bz2
1026
1027 VERSION :
1028         echo $(ProjectVersion) >VERSION
1029
1030 sdist : VERSION
1031
1032 # Use:
1033 #     $(call sdist_file,compiler,stage2,cmm,Foo/Bar,CmmLex,x)
1034 # to copy the generated file that replaces compiler/cmm/Foo/Bar/CmmLex.x, where
1035 # "stage2" is the dist dir.
1036 define sdist_file
1037         "$(CP)" $1/$2/build/$4/$5.hs $(SRC_DIST_DIR)/$1/$3/$4
1038         mv $(SRC_DIST_DIR)/$1/$3/$4/$5.$6 $(SRC_DIST_DIR)/$1/$3/$4/$5.$6.source
1039 endef
1040
1041 .PHONY: sdist-prep
1042 sdist-prep :
1043         "$(RM)" $(RM_OPTS) -r $(SRC_DIST_DIR)
1044         "$(RM)" $(RM_OPTS) $(SRC_DIST_TARBALL)
1045         mkdir $(SRC_DIST_DIR)
1046         cd $(SRC_DIST_DIR) && for i in $(SRC_DIST_DIRS); do mkdir $$i; ( cd $$i && lndir $(TOP)/$$i ); done
1047         cd $(SRC_DIST_DIR) && for i in $(SRC_DIST_FILES); do $(LN_S) $(TOP)/$$i .; done
1048         cd $(SRC_DIST_DIR) && $(MAKE) distclean
1049         rm -rf $(SRC_DIST_DIR)/libraries/tarballs/
1050         rm -rf $(SRC_DIST_DIR)/libraries/stamp/
1051         $(call sdist_file,compiler,stage2,cmm,,CmmLex,x)
1052         $(call sdist_file,compiler,stage2,cmm,,CmmParse,y)
1053         $(call sdist_file,compiler,stage2,parser,,Lexer,x)
1054         $(call sdist_file,compiler,stage2,parser,,Parser,y.pp)
1055         $(call sdist_file,compiler,stage2,parser,,ParserCore,y)
1056         $(call sdist_file,utils/hpc,dist,,,HpcParser,y)
1057         $(call sdist_file,utils/genprimopcode,dist,,,Lexer,x)
1058         $(call sdist_file,utils/genprimopcode,dist,,,Parser,y)
1059         $(call sdist_file,utils/haddock,dist,src,Haddock/Interface,Lex,x)
1060         $(call sdist_file,utils/haddock,dist,src,Haddock/Interface,Parse,y)
1061         cd $(SRC_DIST_DIR) && "$(RM)" $(RM_OPTS) -r compiler/stage[123] mk/build.mk
1062         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
1063
1064 .PHONY: sdist
1065 sdist : sdist-prep
1066         "$(TAR)" chf - $(SRC_DIST_NAME) 2>$src_log | bzip2 >$(TOP)/$(SRC_DIST_TARBALL)
1067
1068 sdist-manifest : $(SRC_DIST_TARBALL)
1069         tar tjf $(SRC_DIST_TARBALL) | sed "s|^ghc-$(ProjectVersion)/||" | sort >sdist-manifest
1070
1071 # Upload the distribution(s)
1072 # Retrying is to work around buggy firewalls that corrupt large file transfers
1073 # over SSH.
1074 ifneq "$(PublishLocation)" ""
1075 publish-sdist :
1076         $(call nTimes,10,$(PublishCp) $(SRC_DIST_TARBALL) $(PublishLocation)/dist)
1077 endif
1078
1079 ifeq "$(BootingFromHc)" "YES"
1080 # In a normal build we use GHC to compile C files (see
1081 # rules/c-suffix-rules.mk), which passes a number of its own options
1082 # to the C compiler.  So when bootstrapping we have to provide these
1083 # flags explicitly to C compilations.
1084 SRC_CC_OPTS += -DNO_REGS -DUSE_MINIINTERPRETER
1085 SRC_CC_OPTS += -D__GLASGOW_HASKELL__=$(ProjectVersionInt)
1086 SRC_CC_OPTS += -I$(GHC_INCLUDE_DIR)
1087 endif
1088
1089 # -----------------------------------------------------------------------------
1090 # sdisting libraries
1091
1092 # Use manually, with e.g.:
1093 #     make sdist_directory
1094
1095 sdist_%:
1096         inplace/bin/ghc-cabal sdist libraries/$* dist-install
1097
1098 # -----------------------------------------------------------------------------
1099 # Cleaning
1100
1101 .PHONY: clean
1102
1103 CLEAN_FILES += utils/ghc-pwd/ghc-pwd
1104 CLEAN_FILES += utils/ghc-pwd/ghc-pwd.exe
1105 CLEAN_FILES += utils/ghc-pwd/ghc-pwd.hi
1106 CLEAN_FILES += utils/ghc-pwd/ghc-pwd.o
1107 CLEAN_FILES += libraries/bootstrapping.conf
1108 CLEAN_FILES += libraries/integer-gmp/cbits/GmpDerivedConstants.h
1109 CLEAN_FILES += libraries/integer-gmp/cbits/mkGmpDerivedConstants
1110
1111 clean : clean_files clean_libraries
1112
1113 .PHONY: clean_files
1114 clean_files :
1115         "$(RM)" $(RM_OPTS) $(CLEAN_FILES)
1116
1117 ifneq "$(NO_CLEAN_GMP)" "YES"
1118 CLEAN_FILES += libraries/integer-gmp/gmp/gmp.h
1119 CLEAN_FILES += libraries/integer-gmp/gmp/libgmp.a
1120
1121 clean : clean_gmp
1122 .PHONY: clean_gmp
1123 clean_gmp:
1124         "$(RM)" $(RM_OPTS) -r libraries/integer-gmp/gmp/objs
1125         "$(RM)" $(RM_OPTS) -r libraries/integer-gmp/gmp/gmpbuild
1126 endif
1127
1128 .PHONY: clean_libraries
1129 clean_libraries: $(patsubst %,clean_libraries/%_dist-install,$(PACKAGES) $(PACKAGES_STAGE2))
1130 clean_libraries: $(patsubst %,clean_libraries/%_dist-boot,$(BOOT_PKGS))
1131
1132 clean_libraries:
1133         "$(RM)" $(RM_OPTS) -r $(patsubst %, libraries/%/dist, $(PACKAGES) $(PACKAGES_STAGE2))
1134         "$(RM)" $(RM_OPTS) $(patsubst %, libraries/%/*.buildinfo, $(PACKAGES) $(PACKAGES_STAGE2))
1135
1136 # We have to define a clean target for each library manually, because the
1137 # libraries/*/ghc.mk files are not included when we're cleaning.
1138 ifeq "$(CLEANING)" "YES"
1139 $(foreach lib,$(PACKAGES) $(PACKAGES_STAGE2),\
1140   $(eval $(call clean-target,libraries/$(lib),dist-install,libraries/$(lib)/dist-install)))
1141 endif
1142
1143 clean : clean_bindistprep
1144 .PHONY: clean_bindistprep
1145 clean_bindistprep:
1146         "$(RM)" $(RM_OPTS) -r bindistprep/
1147
1148 distclean : clean
1149         "$(RM)" $(RM_OPTS) config.cache config.status config.log mk/config.h mk/stamp-h
1150         "$(RM)" $(RM_OPTS) mk/config.mk mk/are-validating.mk mk/project.mk
1151         "$(RM)" $(RM_OPTS) mk/config.mk.old mk/project.mk.old
1152         "$(RM)" $(RM_OPTS) extra-gcc-opts docs/users_guide/ug-book.xml
1153         "$(RM)" $(RM_OPTS) compiler/ghc.cabal compiler/ghc.cabal.old
1154         "$(RM)" $(RM_OPTS) ghc/ghc-bin.cabal
1155         "$(RM)" $(RM_OPTS) libraries/base/include/HsBaseConfig.h
1156         "$(RM)" $(RM_OPTS) libraries/directory/include/HsDirectoryConfig.h
1157         "$(RM)" $(RM_OPTS) libraries/process/include/HsProcessConfig.h
1158         "$(RM)" $(RM_OPTS) libraries/unix/include/HsUnixConfig.h
1159         "$(RM)" $(RM_OPTS) libraries/old-time/include/HsTimeConfig.h
1160
1161         "$(RM)" $(RM_OPTS) $(patsubst %, libraries/%/config.log, $(PACKAGES) $(PACKAGES_STAGE2))
1162         "$(RM)" $(RM_OPTS) $(patsubst %, libraries/%/config.status, $(PACKAGES) $(PACKAGES_STAGE2))
1163         "$(RM)" $(RM_OPTS) $(patsubst %, libraries/%/include/Hs*Config.h, $(PACKAGES) $(PACKAGES_STAGE2))
1164         "$(RM)" $(RM_OPTS) -r $(patsubst %, libraries/%/autom4te.cache, $(PACKAGES) $(PACKAGES_STAGE2))
1165
1166 maintainer-clean : distclean
1167         "$(RM)" $(RM_OPTS) configure mk/config.h.in
1168         "$(RM)" $(RM_OPTS) -r autom4te.cache libraries/*/autom4te.cache
1169         "$(RM)" $(RM_OPTS) ghc.spec
1170         "$(RM)" $(RM_OPTS) $(patsubst %, libraries/%/GNUmakefile, \
1171                 $(PACKAGES) $(PACKAGES_STAGE2))
1172         "$(RM)" $(RM_OPTS) $(patsubst %, libraries/%/ghc.mk, $(PACKAGES) $(PACKAGES_STAGE2))
1173         "$(RM)" $(RM_OPTS) $(patsubst %, libraries/%/configure, \
1174                 $(PACKAGES) $(PACKAGES_STAGE2))
1175         "$(RM)" $(RM_OPTS) libraries/base/include/HsBaseConfig.h.in
1176         "$(RM)" $(RM_OPTS) libraries/directory/include/HsDirectoryConfig.h.in
1177         "$(RM)" $(RM_OPTS) libraries/process/include/HsProcessConfig.h.in
1178         "$(RM)" $(RM_OPTS) libraries/unix/include/HsUnixConfig.h.in
1179         "$(RM)" $(RM_OPTS) libraries/old-time/include/HsTimeConfig.h.in
1180
1181 .PHONY: all_libraries
1182
1183 .PHONY: bootstrapping-files
1184 bootstrapping-files: $(OTHER_LIBS)
1185 bootstrapping-files: includes/ghcautoconf.h
1186 bootstrapping-files: includes/DerivedConstants.h
1187 bootstrapping-files: includes/GHCConstants.h
1188
1189 .DELETE_ON_ERROR:
1190