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