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