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