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