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