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