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