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