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