1 # -----------------------------------------------------------------------------
3 # (c) 2009 The University of Glasgow
5 # This file is part of the GHC build system.
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
11 # -----------------------------------------------------------------------------
15 # Before we can merge the new build system into HEAD:
17 # * finish installation
18 # * other documentation
19 # * create doc index and contents
20 # * Windows: should we have ghc-pkg-<version>?
21 # * should we be stripping things?
22 # * install libgmp.a, gmp.h
23 # * finish binary distributions
24 # * need to fix Cabal for new Windows layout, see
25 # Distribution/Simple/GHC.configureToolchain.
27 # Once the new build system is in HEAD, and before 6.12:
29 # * separate the logic of whether to do something from the test for
30 # existence of the tool to do it. For example, rather than checking
31 # if $DIR_DOCBOOK_XSL or $XSLTPROC is "", we should have a variable
32 # for controlling the building of the docs.
33 # * remove old Makefiles, add new stubs for building in subdirs
34 # * utils/hsc2hs/Makefile
35 # * utils/haddock/Makefile
37 # * docs/docbook-cheat-sheet/Makefile
38 # * docs/ext-core/Makefile
40 # * docs/storage-mgmt/Makefile
43 # * rts/dotnet/Makefile
46 # * optionally install stage3?
47 # * shared libraries, way dyn
48 # * get HC bootstrapping working
49 # * add Makefiles for the rest of the utils/ programs that aren't built
50 # by default (need to exclude them from 'make all' too)
52 # Tickets we can now close, or fix and close:
54 # * 2966 make sure --with-gcc does the right thing (#2966)
55 # * 1693 make distclean
56 # * 2689 make maintainer-clean
57 # * 3173 make install with DESTDIR
61 # * per-source-file dependencies instead of one .depend file?
62 # * eliminate undefined variables, and use --warn-undefined-variables?
63 # * perhaps we should make all the output dirs in the .depend rule, to
64 # avoid all these mkdirhier calls?
65 # * put outputs from different ways in different subdirs of distdir/build,
66 # then we don't have to use -osuf/-hisuf. We would have to install
67 # them in different places too, so we'd need ghc-pkg support for packages
69 # * make PACKAGES generated by configure or sh boot?
70 # * we should use a directory of package.conf files rather than a single
71 # file for the inplace package database, so that we can express
72 # dependencies more accurately. Otherwise it's possible to get into
73 # a state where the package database is out of date, and the build
74 # system doesn't know.
76 # Approximate build order.
78 # The actual build order is defined by dependencies, and the phase
79 # ordering used to ensure correct ordering of makefile-generation; see
80 # http://hackage.haskell.org/trac/ghc/wiki/Building/Architecture/Idiom/PhaseOrdering
82 # * With bootstrapping compiler:
83 # o Build utils/ghc-cabal
84 # o Build utils/ghc-pkg
85 # o Build utils/hsc2hs
87 # o configure, generate package-data.mk and inplace-pkg-info
88 # o register each package into inplace/lib/package.conf
90 # * With bootstrapping compiler:
91 # o Build libraries/{filepath,hpc,extensible-exceptions,Cabal}
92 # o Build compiler (stage 1)
96 # o Build utils/* (except haddock)
97 # o Build compiler (stage 2)
99 # o Build utils/haddock
100 # o Build compiler (stage 3) (optional)
107 # Just bring makefiles up to date:
108 .PHONY
: just-makefiles
112 # -----------------------------------------------------------------------------
113 # Misc GNU make utils
116 space
=$(nothing
) $(nothing
)
119 # Cancel all suffix rules. Ideally we'd like to have 'make -r' turned on
120 # by default, because that disables all the implicit rules, but there doesn't
121 # seem to be a good way to do that. This turns off all the old-style suffix
122 # rules, which does half the job and speeds up make quite a bit:
125 # -----------------------------------------------------------------------------
127 # to see the effective value used for a Makefile variable, do
128 # make show VALUE=MY_VALUE
132 @echo
'$(VALUE)="$($(VALUE))"'
134 # -----------------------------------------------------------------------------
135 # Include subsidiary build-system bits
137 ifneq "$(findstring clean,$(MAKECMDGOALS))" ""
138 -include mk
/config.mk
141 ifeq "$(ProjectVersion)" ""
142 $(error Please run .
/configure first
)
146 # (Optional) build-specific configuration
147 include mk
/custom-settings.mk
149 ifeq "$(findstring clean,$(MAKECMDGOALS))" ""
150 ifeq "$(GhcLibWays)" ""
151 $(error
$$(GhcLibWays
) is empty
, it must contain at least one way
)
155 # -----------------------------------------------------------------------------
156 # Macros for standard targets
158 include rules
/all-target.mk
159 include rules
/clean-target.mk
161 # -----------------------------------------------------------------------------
164 $(eval
$(call clean-target
,inplace
,,inplace
))
166 # -----------------------------------------------------------------------------
167 # Whether to build dependencies or not
169 # When we're just doing 'make clean' or 'make show', then we don't need
170 # to build dependencies.
172 ifneq "$(findstring clean,$(MAKECMDGOALS))" ""
173 NO_INCLUDE_DEPS
= YES
174 NO_INCLUDE_PKGDATA
= YES
176 ifeq "$(findstring show,$(MAKECMDGOALS))" "show"
177 NO_INCLUDE_DEPS
= YES
178 # We want package-data.mk for show
181 # We don't haddock base3-compat, as it has the same package name as base
182 libraries
/base3-compat_dist-install_DO_HADDOCK
= NO
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
190 # -----------------------------------------------------------------------------
193 include rules
/way-prelims.mk
195 $(foreach way
,$(ALL_WAYS
),\
196 $(eval
$(call way-prelims
,$(way
))))
198 # -----------------------------------------------------------------------------
201 include rules
/distdir-opts.mk
202 include rules
/distdir-way-opts.mk
204 # -----------------------------------------------------------------------------
205 # Finding source files and object files
207 include rules
/hs-sources.mk
208 include rules
/c-sources.mk
209 include rules
/includes-sources.mk
210 include rules
/hs-objs.mk
211 include rules
/c-objs.mk
213 # -----------------------------------------------------------------------------
216 include rules
/hs-suffix-rules-srcdir.mk
217 include rules
/hs-suffix-rules.mk
219 # -----------------------------------------------------------------------------
220 # Suffix rules for .hi files
222 include rules
/hi-rule.mk
224 $(foreach way
,$(ALL_WAYS
),\
225 $(eval
$(call hi-rule
,$(way
))))
227 #-----------------------------------------------------------------------------
228 # C-related suffix rules
230 include rules
/c-suffix-rules.mk
232 # -----------------------------------------------------------------------------
233 # Building package-data.mk files from .cabal files
235 include rules
/package-config.mk
237 # -----------------------------------------------------------------------------
238 # Building dependencies
240 include rules
/build-dependencies.mk
242 # -----------------------------------------------------------------------------
243 # Build package-data.mk files
245 include rules
/build-package-data.mk
247 # -----------------------------------------------------------------------------
248 # Build and install a program
250 include rules
/build-prog.mk
251 include rules
/shell-wrapper.mk
253 # -----------------------------------------------------------------------------
254 # Build a perl script
256 include rules
/build-perl.mk
258 # -----------------------------------------------------------------------------
261 include rules
/build-package.mk
262 include rules
/build-package-way.mk
263 include rules
/haddock.mk
265 # -----------------------------------------------------------------------------
266 # Registering hand-written package descriptions (used in libffi and rts)
268 include rules
/manual-package-config.mk
270 # -----------------------------------------------------------------------------
273 include rules
/docbook.mk
275 # -----------------------------------------------------------------------------
278 include rules
/bindist.mk
280 # -----------------------------------------------------------------------------
283 # XXX generate from $(TOP)/packages
293 ifeq "$(Windows)" "YES"
305 extensible-exceptions \
317 ifneq "$(Windows)" "YES"
321 PACKAGES
+= haskeline
323 ifneq "$(wildcard libraries/dph)" ""
326 dph
/dph-prim-interface \
333 BOOT_PKGS
= Cabal hpc extensible-exceptions
335 # The actual .a and .so/.dll files: needed for dependencies.
336 ALL_STAGE1_LIBS
= $(foreach lib
,$(PACKAGES
),$(libraries
/$(lib
)_dist-install_v_LIB
))
337 ifeq "$(BuildSharedLibs)" "YES"
338 ALL_STAGE1_LIBS
+= $(foreach lib
,$(PACKAGES
),$(libraries
/$(lib
)_dist-install_dyn_LIB
))
340 BOOT_LIBS
= $(foreach lib
,$(BOOT_PKGS
),$(libraries
/$(lib
)_dist-boot_v_LIB
))
342 OTHER_LIBS
= libffi
/libHSffi
$(v_libsuf
) libffi
/HSffi.o
343 ifeq "$(BuildSharedLibs)" "YES"
344 OTHER_LIBS
+= libffi
/libHSffi
$(dyn_libsuf
)
346 ifeq "$(HaveLibGmp)" "NO"
347 OTHER_LIBS
+= gmp
/libgmp.a
350 # We cannot run ghc-cabal to configure a package until we have
351 # configured and registered all of its dependencies. So the following
352 # hack forces all the configure steps to happen in exactly the order
353 # given in the PACKAGES variable above. Ideally we should use the
354 # correct dependencies here to allow more parallelism, but we don't
355 # know the dependencies until we've generated the pacakge-data.mk
358 libraries
/$1/$2/package-data.mk
: $$(GHC_PKG_INPLACE
) $$(if
$$(fixed_pkg_prev
),libraries
/$$(fixed_pkg_prev
)/$2/package-data.mk
)
362 ifneq "$(BINDIST)" "YES"
364 $(foreach pkg
,$(PACKAGES
) $(PACKAGES_STAGE2
),$(eval
$(call fixed_pkg_dep
,$(pkg
),dist-install
)))
366 # We assume that the stage2 compiler depends on all the libraries, so
367 # they all get added to the package database before we try to configure
369 compiler
/stage2
/package-data.mk
: $(foreach pkg
,$(PACKAGES
) $(PACKAGES_STAGE2
),libraries
/$(pkg
)/dist-install
/package-data.mk
)
370 ghc
/stage1
/package-data.mk
: compiler
/stage1
/package-data.mk
371 ghc
/stage2
/package-data.mk
: compiler
/stage2
/package-data.mk
372 # haddock depends on ghc and some libraries, but depending on GHC's
373 # package-data.mk is sufficient, as that in turn depends on all the
375 utils
/haddock
/dist/package-data.mk
: compiler
/stage2
/package-data.mk
377 utils
/hsc2hs
/dist-install
/package-data.mk
: compiler
/stage2
/package-data.mk
379 # add the final two package.conf dependencies: ghc-prim depends on RTS,
380 # and RTS depends on libffi.
381 libraries
/ghc-prim
/dist-install
/package-data.mk
: rts
/package.conf.inplace
382 rts
/package.conf.inplace
: libffi
/package.conf.inplace
385 # -----------------------------------------------------------------------------
386 # Special magic for the ghc-prim package
388 # We want the ghc-prim package to include the GHC.Prim module when it
389 # is registered, but not when it is built, because GHC.Prim is not a
390 # real source module, it is built-in to GHC. The old build system did
391 # this using Setup.hs, but we can't do that here, so we have a flag to
392 # enable GHC.Prim in the .cabal file (so that the ghc-prim package
393 # remains compatible with the old build system for the time being).
394 # GHC.Prim module in the ghc-prim package with a flag:
396 libraries
/ghc-prim_CONFIGURE_OPTS
+= --flag
=include-ghc-prim
398 # And then we strip it out again before building the package:
399 define libraries
/ghc-prim_PACKAGE_MAGIC
400 libraries
/ghc-prim_dist-install_MODULES
:= $$(filter-out GHC.Prim
,$$(libraries
/ghc-prim_dist-install_MODULES
))
403 PRIMOPS_TXT
= $(GHC_COMPILER_DIR
)/prelude
/primops.txt
405 libraries
/ghc-prim
/dist-install
/build
/GHC
/PrimopWrappers.hs
: $(GENPRIMOP_INPLACE
) $(PRIMOPS_TXT
)
406 $(MKDIRHIER
) $(dir $@
)
407 $(GENPRIMOP_INPLACE
) --make-haskell-wrappers
<$(PRIMOPS_TXT
) >$@
409 libraries
/ghc-prim
/GHC
/Prim.hs
: $(GENPRIMOP_INPLACE
) $(PRIMOPS_TXT
)
410 $(GENPRIMOP_INPLACE
) --make-haskell-source
<$(PRIMOPS_TXT
) >$@
413 # -----------------------------------------------------------------------------
414 # Include build instructions from all subdirs
416 # For the rationale behind the build phases, see
417 # http://hackage.haskell.org/trac/ghc/wiki/Building/Architecture/Idiom/PhaseOrdering
419 # Setting foo_dist_DISABLE=YES means "in directory foo, for build
420 # "dist", just read the package-data.mk file, do not build anything".
422 # We carefully engineer things so that we can build the
423 # package-data.mk files early on: they depend only on a few tools also
424 # built early. Having got the package-data.mk files built, we can
425 # restart make with up-to-date information about all the packages
426 # (this is phase 0). The remaining problem is the .depend files:
428 # - .depend files in libraries need the stage 1 compiler to build
429 # - ghc/stage1/.depend needs compiler/stage1 built
430 # - compiler/stage1/.depend needs the bootstrap libs built
432 # GHC 6.11+ can build a .depend file without having built the
433 # dependencies of the package, but we can't rely on the bootstrapping
434 # compiler being able to do this, which is why we have to separate the
435 # three phases above.
437 # So this is the final ordering:
439 # Phase 0 : all package-data.mk files
440 # (requires ghc-cabal, ghc-pkg, mkdirhier, dummy-ghc etc.)
441 # Phase 1 : .depend files for bootstrap libs
443 # Phase 2 : compiler/stage1/.depend
444 # (requires bootstrap libs and genprimopcode)
445 # Phase 3 : ghc/stage1/.depend
446 # (requires compiler/stage1)
448 # The rest : libraries/*/dist-install, compiler/stage2, ghc/stage2
452 ifneq "$(BINDIST)" "YES"
454 $(GHC_MKDEPENDC_DIR
) \
461 libraries
/Cabal
/doc \
467 ifneq "$(BINDIST)" "YES"
480 ifneq "$(BINDIST)" "YES"
489 $(patsubst %, libraries
/%, $(PACKAGES
)) \
490 $(patsubst %, libraries
/%, $(PACKAGES_STAGE2
)) \
498 ifeq "$(Windows)" "YES"
503 # XXX libraries/% must come before any programs built with stage1, see
504 # Note [lib-depends].
507 $(foreach lib
,$(BOOT_PKGS
),$(eval \
508 libraries
/$(lib
)_dist-boot_DISABLE
= YES
))
511 ifneq "$(findstring $(phase),0 1)" ""
512 # We can build deps for compiler/stage1 in phase 2
513 compiler_stage1_DISABLE
= YES
516 ifneq "$(findstring $(phase),0 1 2)" ""
517 ghc_stage1_DISABLE
= YES
520 ifneq "$(findstring $(phase),0 1 2 3)" ""
521 # In phases 0-3, we disable stage2-3, the full libraries and haddock
522 utils
/haddock_dist_DISABLE
= YES
523 utils
/runghc_dist_DISABLE
= YES
524 utils
/hpc_dist_DISABLE
= YES
525 utils
/hasktags_dist_DISABLE
= YES
526 utils
/hsc2hs_dist-install_DISABLE
= YES
527 utils
/ghc-pkg_dist-install_DISABLE
= YES
528 compiler_stage2_DISABLE
= YES
529 compiler_stage3_DISABLE
= YES
530 ghc_stage2_DISABLE
= YES
531 ghc_stage3_DISABLE
= YES
532 $(foreach lib
,$(PACKAGES
) $(PACKAGES_STAGE2
),$(eval \
533 libraries
/$(lib
)_dist-install_DISABLE
= YES
))
536 ifneq "$(wildcard libraries/dph)" ""
537 include libraries
/dph
/ghc.mk
539 include $(patsubst %, %/ghc.mk
, $(BUILD_DIRS
))
541 # We need -fno-warn-deprecated-flags to avoid failure with -Werror
542 GhcLibHcOpts
+= -fno-warn-deprecated-flags
543 ifeq "$(ghc_ge_609)" "YES"
544 GhcBootLibHcOpts
+= -fno-warn-deprecated-flags
547 # Add $(GhcLibHcOpts) to all library builds
548 $(foreach pkg
,$(PACKAGES
) $(PACKAGES_STAGE2
),$(eval libraries
/$(pkg
)_dist-install_HC_OPTS
+= $$(GhcLibHcOpts
)))
550 # XXX Hack; remove this
551 $(foreach pkg
,$(PACKAGES_STAGE2
),$(eval libraries
/$(pkg
)_dist-install_HC_OPTS
+= -Wwarn
))
553 # XXX we configure packages with the bootsrapping compiler (for
554 # dependency reasons, see the phase ordering), which doesn't
555 # necessarily support all the extensions we need, and Cabal filters
556 # out the ones it thinks aren't supported.
557 libraries
/base3-compat_dist-install_HC_OPTS
+= -XPackageImports
559 # -----------------------------------------------------------------------------
560 # Bootstrapping libraries
562 # We need to build a few libraries with the installed GHC, since GHC itself
563 # and some of the tools depend on them:
565 ifneq "$(BINDIST)" "YES"
567 ifneq "$(BOOTSTRAPPING_CONF)" ""
568 ifeq "$(wildcard $(BOOTSTRAPPING_CONF))" ""
569 $(shell echo
"[]" >$(BOOTSTRAPPING_CONF
))
573 $(eval
$(call clean-target
,$(BOOTSTRAPPING_CONF
),,$(BOOTSTRAPPING_CONF
)))
575 # These three libraries do not depend on each other, so we can build
578 $(eval
$(call build-package
,libraries
/hpc
,dist-boot
,0))
579 $(eval
$(call build-package
,libraries
/extensible-exceptions
,dist-boot
,0))
580 $(eval
$(call build-package
,libraries
/Cabal
,dist-boot
,0))
582 # register the boot packages in strict sequence, because running
583 # multiple ghc-pkgs in parallel doesn't work (registrations may get
586 $(foreach pkg
,$(BOOT_PKGS
),$(eval
$(call fixed_pkg_dep
,$(pkg
),dist-boot
)))
588 compiler
/stage1
/package-data.mk
: \
589 libraries
/Cabal
/dist-boot
/package-data.mk \
590 libraries
/hpc
/dist-boot
/package-data.mk \
591 libraries
/extensible-exceptions
/dist-boot
/package-data.mk
593 # These are necessary because the bootstrapping compiler may not know
594 # about cross-package dependencies:
595 $(compiler_stage1_depfile
) : $(BOOT_LIBS
)
596 $(ghc_stage1_depfile
) : $(compiler_stage1_v_LIB
)
598 $(foreach pkg
,$(BOOT_PKGS
),$(eval libraries
/$(pkg
)_dist-boot_HC_OPTS
+= $$(GhcBootLibHcOpts
)))
602 # -----------------------------------------------------------------------------
603 # Creating a local mingw copy on Windows
605 ifeq "$(Windows)" "YES"
607 # directories don't work well as dependencies, hence a stamp file
608 $(INPLACE
)/stamp-mingw
: $(MKDIRHIER
)
609 $(MKDIRHIER
) $(INPLACE_MINGW
)/bin
610 GCC
=`type -p $(WhatGccIsCalled)`; \
611 GccDir
=`dirname $$GCC`; \
612 $(CP
) -p
$$GccDir/{gcc.exe
,ar.exe
,as.exe
,dlltool.exe
,dllwrap.exe
,windres.exe
} $(INPLACE_MINGW
)/bin
; \
613 $(CP
) -Rp
$$GccDir/..
/include $(INPLACE_MINGW
); \
614 $(CP
) -Rp
$$GccDir/..
/lib
$(INPLACE_MINGW
); \
615 $(CP
) -Rp
$$GccDir/..
/libexec
$(INPLACE_MINGW
); \
616 $(CP
) -Rp
$$GccDir/..
/mingw32
$(INPLACE_MINGW
)
617 touch
$(INPLACE
)/stamp-mingw
619 install : install_mingw
620 .PHONY
: install_mingw
621 install_mingw
: $(INPLACE_MINGW
)
622 $(CP
) -Rp
$(INPLACE_MINGW
) $(prefix)
624 $(INPLACE_LIB
)/perl.exe
$(INPLACE_LIB
)/perl56.dll
:
625 $(CP
) $(GhcDir
)..
/{perl.exe
,perl56.dll
} $(INPLACE_LIB
)
629 libraries
/ghc-prim
/dist-install
/doc
/html
/ghc-prim
/ghc-prim.haddock
: \
630 libraries
/ghc-prim
/dist-install
/build
/autogen
/GHC
/Prim.hs \
631 libraries
/ghc-prim
/dist-install
/build
/autogen
/GHC
/PrimopWrappers.hs
633 libraries
/ghc-prim
/dist-install
/build
/autogen
/GHC
/Prim.hs
: \
634 $(PRIMOPS_TXT
) $(GENPRIMOP_INPLACE
) $(MKDIRHIER
)
635 $(MKDIRHIER
) $(dir $@
)
636 $(GENPRIMOP_INPLACE
) --make-haskell-source
< $< > $@
638 libraries
/ghc-prim
/dist-install
/build
/autogen
/GHC
/PrimopWrappers.hs
: \
639 $(PRIMOPS_TXT
) $(GENPRIMOP_INPLACE
) $(MKDIRHIER
)
640 $(MKDIRHIER
) $(dir $@
)
641 $(GENPRIMOP_INPLACE
) --make-haskell-wrappers
< $< > $@
643 # -----------------------------------------------------------------------------
646 install: install_packages install_libs install_libexecs install_headers \
647 install_libexec_scripts install_bins
649 install_bins
: $(INSTALL_BINS
)
650 $(INSTALL_DIR
) $(DESTDIR
)$(bindir)
651 for i in
$(INSTALL_BINS
); do \
652 $(INSTALL_PROGRAM
) $(INSTALL_BIN_OPTS
) $$i $(DESTDIR
)$(bindir) ; \
653 if
test "$(darwin_TARGET_OS)" = "1"; then \
654 sh mk
/fix_install_names.sh
$(libdir) $(DESTDIR
)$(bindir)/$$i ; \
658 install_libs
: $(INSTALL_LIBS
)
659 $(INSTALL_DIR
) $(DESTDIR
)$(libdir)
660 for i in
$(INSTALL_LIBS
); do \
663 $(INSTALL_DATA
) $(INSTALL_OPTS
) $$i $(DESTDIR
)$(libdir); \
664 $(RANLIB
) $(DESTDIR
)$(libdir)/`basename $$i` ;; \
666 $(INSTALL_DATA
) -s
$(INSTALL_OPTS
) $$i $(DESTDIR
)$(libdir) ;; \
668 $(INSTALL_SHLIB
) $(INSTALL_OPTS
) $$i $(DESTDIR
)$(libdir) ;; \
670 $(INSTALL_SHLIB
) $(INSTALL_OPTS
) $$i $(DESTDIR
)$(libdir); \
671 install_name_tool
-id
$(DESTDIR
)$(libdir)/`basename $$i` $(DESTDIR
)$(libdir)/`basename $$i` ;; \
673 $(INSTALL_DATA
) $(INSTALL_OPTS
) $$i $(DESTDIR
)$(libdir); \
677 install_libexec_scripts
: $(INSTALL_LIBEXEC_SCRIPTS
)
678 $(MKDIRHIER
) $(DESTDIR
)$(libexecdir
)
679 for i in
$(INSTALL_LIBEXEC_SCRIPTS
); do \
680 $(INSTALL_SCRIPT
) $(INSTALL_OPTS
) $$i $(DESTDIR
)$(libexecdir
); \
683 install_libexecs
: $(INSTALL_LIBEXECS
)
684 $(MKDIRHIER
) $(DESTDIR
)$(libexecdir
)
685 for i in
$(INSTALL_LIBEXECS
); do \
686 $(INSTALL_PROGRAM
) $(INSTALL_BIN_OPTS
) $$i $(DESTDIR
)$(libexecdir
); \
689 install_headers
: $(INSTALL_HEADERS
)
690 $(INSTALL_DIR
) $(DESTDIR
)$(headerdir
)
691 for i in
$(INSTALL_HEADERS
); do \
692 $(INSTALL_HEADER
) $(INSTALL_OPTS
) $$i $(DESTDIR
)$(headerdir
); \
695 INSTALLED_PACKAGE_CONF
=$(DESTDIR
)$(libdir)/package.conf
697 # Install packages in the right order, so that ghc-pkg doesn't complain.
698 # Also, install ghc-pkg first.
699 ifeq "$(Windows)" "NO"
700 INSTALLED_GHC_PKG_REAL
=$(DESTDIR
)$(libexecdir
)/ghc-pkg
702 INSTALLED_GHC_PKG_REAL
=$(DESTDIR
)$(bindir)/ghc-pkg.exe
705 install_packages
: install_libexecs
706 install_packages
: libffi
/package.conf.
install rts
/package.conf.
install
707 $(MKDIRHIER
) $(DESTDIR
)$(libdir)
708 echo
"[]" > $(INSTALLED_PACKAGE_CONF
)
709 $(INSTALLED_GHC_PKG_REAL
) --force --global-conf
$(INSTALLED_PACKAGE_CONF
) update libffi
/package.conf.
install
710 $(INSTALLED_GHC_PKG_REAL
) --force --global-conf
$(INSTALLED_PACKAGE_CONF
) update rts
/package.conf.
install
711 $(foreach p
, $(PACKAGES
) $(PACKAGES_STAGE2
),\
712 $(GHC_CABAL_INPLACE
) install \
713 $(INSTALLED_GHC_PKG_REAL
) \
714 $(INSTALLED_PACKAGE_CONF
) \
715 libraries
/$p dist-install \
716 '$(DESTDIR)' '$(prefix)' '$(libdir)' '$(docdir)/libraries' &&) true
717 $(GHC_CABAL_INPLACE
) install \
718 $(INSTALLED_GHC_PKG_REAL
) \
719 $(INSTALLED_PACKAGE_CONF
) \
721 '$(DESTDIR)' '$(prefix)' '$(libdir)' '$(docdir)/libraries'
723 # -----------------------------------------------------------------------------
724 # Binary distributions
726 $(eval
$(call bindist
,.
,\
728 configure config.sub config.guess install-sh \
732 $(INPLACE_BIN
)/mkdirhier \
733 $(INPLACE_BIN
)/ghc-cabal \
734 utils
/ghc-pwd
/ghc-pwd \
735 $(BINDIST_WRAPPERS
) \
740 $(INSTALL_LIBEXECS
) \
741 $(INSTALL_LIBEXEC_SCRIPTS
) \
743 $(filter-out extra-gcc-opts
,$(INSTALL_LIBS
)) \
744 $(filter-out %/project.mk
,$(filter-out mk
/config.mk
,$(MAKEFILE_LIST
))) \
745 mk
/fix_install_names.sh \
748 # mk/project.mk gets an absolute path, so we manually include it in
749 # the bindist with a relative path
752 $(RM
) -rf
$(BIN_DIST_NAME
)
753 mkdir
$(BIN_DIST_NAME
)
754 set
-e
; for i in LICENSE compiler ghc rts libraries utils gmp docs libffi includes driver mk rules Makefile aclocal.m4 config.sub config.guess install-sh extra-gcc-opts.in ghc.mk inplace
; do ln
-s ..
/$$i $(BIN_DIST_NAME
)/; done
755 ln
-s ..
/distrib
/configure-bin.ac
$(BIN_DIST_NAME
)/configure.ac
756 cd
$(BIN_DIST_NAME
) && autoreconf
757 $(RM
) -f
$(BIN_DIST_TAR
)
758 # h means "follow symlinks", e.g. if aclocal.m4 is a symlink to a source
759 # tree then we want to include the real file, not a symlink to it
760 $(TAR
) hcf
- -T
$(BIN_DIST_LIST
) | bzip2
-c
>$(BIN_DIST_TAR_BZ2
)
762 nTimes
= set
-e
; for i in
`seq 1 $(1)`; do echo Try
"$$i: $(2)"; if
$(2); then break
; fi
; done
764 .PHONY
: publish-binary-dist
766 $(call nTimes
,10,$(PublishCp
) $(BIN_DIST_TAR_BZ2
) $(PublishLocation
)/dist)
768 # -----------------------------------------------------------------------------
769 # Source distributions
777 # A source dist is built from a complete build tree, because we
778 # require some extra files not contained in a darcs checkout: the
779 # output from Happy and Alex, for example.
781 # The steps performed by 'make dist' are as follows:
782 # - create a complete link-tree of the current build tree in /tmp
783 # - run 'make distclean' on that tree
784 # - remove a bunch of other files that we know shouldn't be in the dist
785 # - tar up first the extralibs package, then the main source package
788 # Directory in which we're going to build the src dist
790 SRC_DIST_NAME
=ghc-
$(ProjectVersion
)
791 SRC_DIST_DIR
=$(shell pwd
)/$(SRC_DIST_NAME
)
794 # Files to include in source distributions
796 SRC_DIST_DIRS
= mk rules docs distrib bindisttest gmp libffi includes utils docs rts compiler ghc driver libraries
798 configure.ac config.guess config.sub configure \
799 aclocal.m4 README ANNOUNCE HACKING LICENSE Makefile install-sh \
800 ghc.spec.in ghc.spec extra-gcc-opts.in VERSION boot ghc.mk
802 SRC_DIST_TARBALL
= ghc-
$(ProjectVersion
)-src.
tar.bz2
805 echo
$(ProjectVersion
) >VERSION
810 # $(call sdist_file,compiler,stage2,cmm,CmmLex,x)
811 # to copy the generated file that replaces compiler/cmm/CmmLex.x, where
812 # "stage2" is the dist dir.
814 if
test -f
$(TOP
)/$1/$2/build
/$4.hs
; then \
815 $(CP
) $(TOP
)/$1/$2/build
/$4.hs
$1/$3/ ; \
816 mv
$1/$3/$4.
$5 $1/$3/$4.
$5.source
;\
818 echo
"does not exist: $1/$2//build/$4.hs"; \
824 $(RM
) -rf
$(SRC_DIST_DIR
)
825 $(RM
) $(SRC_DIST_NAME
).
tar.gz
826 mkdir
$(SRC_DIST_DIR
)
827 ( cd
$(SRC_DIST_DIR
) \
828 && for i in
$(SRC_DIST_DIRS
); do mkdir
$$i; (cd
$$i && lndir
$(TOP
)/$$i ); done \
829 && for i in
$(SRC_DIST_FILES
); do
$(LN_S
) $(TOP
)/$$i .
; done \
830 && $(MAKE
) distclean \
831 && 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 \
832 && $(call sdist_file
,compiler
,stage2
,cmm
,CmmLex
,x
) \
833 && $(call sdist_file
,compiler
,stage2
,cmm
,CmmParse
,y
) \
834 && $(call sdist_file
,compiler
,stage2
,main
,ParsePkgConf
,y
) \
835 && $(call sdist_file
,compiler
,stage2
,parser
,HaddockLex
,x
) \
836 && $(call sdist_file
,compiler
,stage2
,parser
,HaddockParse
,y
) \
837 && $(call sdist_file
,compiler
,stage2
,parser
,Lexer
,x
) \
838 && $(call sdist_file
,compiler
,stage2
,parser
,Parser
,y.pp
) \
839 && $(call sdist_file
,compiler
,stage2
,parser
,ParserCore
,y
) \
840 && $(call sdist_file
,utils
/hpc
,dist,,HpcParser
,y
) \
841 && $(call sdist_file
,utils
/genprimopcode
,dist,,Lexer
,x
) \
842 && $(call sdist_file
,utils
/genprimopcode
,dist,,Parser
,y
) \
843 && $(RM
) -rf compiler
/stage
[123] mk
/build.mk \
844 && $(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
) -rf \
849 $(TAR
) chf
- $(SRC_DIST_NAME
) 2>$src_log | bzip2
>$(TOP
)/$(SRC_DIST_TARBALL
)
851 sdist-manifest
: $(SRC_DIST_TARBALL
)
852 tar tjf
$(SRC_DIST_TARBALL
) | sed
"s|^ghc-$(ProjectVersion)/||" |
sort >sdist-manifest
854 # Upload the distribution(s)
855 # Retrying is to work around buggy firewalls that corrupt large file transfers
857 ifneq "$(PublishLocation)" ""
859 $(call nTimes
,10,$(PublishCp
) $(SRC_DIST_TARBALL
) $(PublishLocation
)/dist)
862 ifeq "$(GhcUnregisterised)" "YES"
863 SRC_CC_OPTS
+= -DNO_REGS
-DUSE_MINIINTERPRETER
866 # -----------------------------------------------------------------------------
871 CLEAN_FILES
+= utils
/ghc-pwd
/ghc-pwd
872 CLEAN_FILES
+= utils
/ghc-pwd
/ghc-pwd.exe
873 CLEAN_FILES
+= utils
/ghc-pwd
/ghc-pwd.hi
874 CLEAN_FILES
+= utils
/ghc-pwd
/ghc-pwd.o
882 $(RM
) config.cache config.status config.log mk
/config.h mk
/stamp-h
883 $(RM
) mk
/config.mk mk
/are-validating.mk mk
/project.mk
884 $(RM
) extra-gcc-opts docs
/users_guide
/ug-book.xml
885 $(RM
) compiler
/ghc.cabal ghc
/ghc-bin.cabal
886 $(RM
) libraries
/base
/include/HsBaseConfig.h
887 $(RM
) libraries
/directory
/include/HsDirectoryConfig.h
888 $(RM
) libraries
/process
/include/HsProcessConfig.h
889 $(RM
) libraries
/unix
/include/HsUnixConfig.h
890 $(RM
) libraries
/old-time
/include/HsTimeConfig.h
892 maintainer-clean
: distclean
893 $(RM
) configure mk
/config.h.in
894 $(RM
) -r autom4te.cache libraries
/*/autom4te.cache
896 $(RM
) libraries
/*/GNUmakefile libraries
/*/ghc.mk libraries
/*/configure
897 $(RM
) libraries
/base
/include/HsBaseConfig.h.in
898 $(RM
) libraries
/directory
/include/HsDirectoryConfig.h.in
899 $(RM
) libraries
/process
/include/HsProcessConfig.h.in
900 $(RM
) libraries
/unix
/include/HsUnixConfig.h.in
901 $(RM
) libraries
/old-time
/include/HsTimeConfig.h.in
903 .PHONY
: all_libraries