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