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