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