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