Fix warnings
[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 # XXX generate from $(TOP)/packages
286 PACKAGES = \
287         ghc-prim \
288         integer-gmp \
289         integer \
290         base \
291         filepath \
292         array \
293         bytestring \
294         containers
295
296 ifeq "$(Windows)" "YES"
297 PACKAGES += Win32
298 else
299 PACKAGES += unix
300 endif
301
302 PACKAGES += \
303         old-locale \
304         old-time \
305         directory \
306         process \
307         random \
308         extensible-exceptions \
309         haskell98 \
310         hpc \
311         pretty \
312         syb \
313         template-haskell \
314         base3-compat \
315         Cabal \
316         mtl \
317         utf8-string
318
319 ifneq "$(Windows)" "YES"
320 PACKAGES += terminfo
321 endif
322
323 PACKAGES += haskeline
324
325 ifneq "$(BootingFromHc)" "YES"
326 PACKAGES_STAGE2 += \
327         dph/dph-base \
328         dph/dph-prim-interface \
329         dph/dph-prim-seq \
330         dph/dph-prim-par \
331         dph/dph-seq \
332         dph/dph-par
333 endif
334
335 BOOT_PKGS = Cabal hpc extensible-exceptions
336
337 # The actual .a and .so/.dll files: needed for dependencies.
338 ALL_STAGE1_LIBS  = $(foreach lib,$(PACKAGES),$(libraries/$(lib)_dist-install_v_LIB))
339 ifeq "$(BuildSharedLibs)" "YES"
340 ALL_STAGE1_LIBS += $(foreach lib,$(PACKAGES),$(libraries/$(lib)_dist-install_dyn_LIB))
341 endif
342 BOOT_LIBS = $(foreach lib,$(BOOT_PKGS),$(libraries/$(lib)_dist-boot_v_LIB))
343
344 OTHER_LIBS = libffi/libHSffi$(v_libsuf) libffi/HSffi.o
345 ifeq "$(BuildSharedLibs)" "YES"
346 OTHER_LIBS  += libffi/libHSffi$(dyn_libsuf)
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    docs/users_guide \
459    libraries/Cabal/doc \
460    $(GHC_UNLIT_DIR) \
461    $(GHC_HP2PS_DIR)
462
463 ifneq "$(GhcUnregisterised)" "YES"
464 BUILD_DIRS += \
465    $(GHC_MANGLER_DIR) \
466    $(GHC_SPLIT_DIR)
467 endif
468
469 ifneq "$(BINDIST)" "YES"
470 BUILD_DIRS += \
471    $(GHC_GENPRIMOP_DIR)
472 endif
473
474 BUILD_DIRS += \
475    driver \
476    driver/ghci \
477    driver/ghc \
478    libffi \
479    includes \
480    rts
481
482 ifneq "$(BINDIST)" "YES"
483 BUILD_DIRS += \
484    $(GHC_CABAL_DIR) \
485    $(GHC_GENAPPLY_DIR)
486 endif
487
488 BUILD_DIRS += \
489    utils/haddock \
490    utils/haddock/doc
491
492 ifneq "$(CLEANING)" "YES"
493 BUILD_DIRS += \
494    $(patsubst %, libraries/%, $(PACKAGES) $(PACKAGES_STAGE2))
495 ifneq "$(BootingFromHc)" "YES"
496 BUILD_DIRS += \
497    libraries/dph
498 endif
499 endif
500
501 BUILD_DIRS += \
502    libraries/integer-gmp/gmp \
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 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 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 \
824         boot boot-pkgs packages ghc.mk
825
826 SRC_DIST_TARBALL = $(SRC_DIST_NAME)-src.tar.bz2
827
828 VERSION :
829         echo $(ProjectVersion) >VERSION
830
831 sdist : VERSION
832
833 # Use:
834 #     $(call sdist_file,compiler,stage2,cmm,CmmLex,x)
835 # to copy the generated file that replaces compiler/cmm/CmmLex.x, where
836 # "stage2" is the dist dir.
837 sdist_file = \
838   if test -f $(TOP)/$1/$2/build/$4.hs; then \
839     "$(CP)" $(TOP)/$1/$2/build/$4.hs $1/$3/ ; \
840     mv $1/$3/$4.$5 $1/$3/$4.$5.source ;\
841   else \
842     echo "does not exist: $1/$2//build/$4.hs"; \
843     exit 1; \
844   fi
845
846 .PHONY: sdist-prep
847 sdist-prep :
848         "$(RM)" $(RM_OPTS) -r $(SRC_DIST_DIR)
849         "$(RM)" $(RM_OPTS) $(SRC_DIST_TARBALL)
850         mkdir $(SRC_DIST_DIR)
851         ( cd $(SRC_DIST_DIR) \
852           && for i in $(SRC_DIST_DIRS); do mkdir $$i; (cd $$i && lndir $(TOP)/$$i ); done \
853           && for i in $(SRC_DIST_FILES); do $(LN_S) $(TOP)/$$i .; done \
854           && $(MAKE) distclean \
855           && 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 \
856           && $(call sdist_file,compiler,stage2,cmm,CmmLex,x) \
857           && $(call sdist_file,compiler,stage2,cmm,CmmParse,y) \
858           && $(call sdist_file,compiler,stage2,main,ParsePkgConf,y) \
859           && $(call sdist_file,compiler,stage2,parser,HaddockLex,x) \
860           && $(call sdist_file,compiler,stage2,parser,HaddockParse,y) \
861           && $(call sdist_file,compiler,stage2,parser,Lexer,x) \
862           && $(call sdist_file,compiler,stage2,parser,Parser,y.pp) \
863           && $(call sdist_file,compiler,stage2,parser,ParserCore,y) \
864           && $(call sdist_file,utils/hpc,dist,,HpcParser,y) \
865           && $(call sdist_file,utils/genprimopcode,dist,,Lexer,x) \
866           && $(call sdist_file,utils/genprimopcode,dist,,Parser,y) \
867           && "$(RM)" $(RM_OPTS) -r compiler/stage[123] mk/build.mk \
868           && "$(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 \
869         )
870
871 .PHONY: sdist
872 sdist : sdist-prep
873         "$(TAR)" chf - $(SRC_DIST_NAME) 2>$src_log | bzip2 >$(TOP)/$(SRC_DIST_TARBALL)
874
875 sdist-manifest : $(SRC_DIST_TARBALL)
876         tar tjf $(SRC_DIST_TARBALL) | sed "s|^ghc-$(ProjectVersion)/||" | sort >sdist-manifest
877
878 # Upload the distribution(s)
879 # Retrying is to work around buggy firewalls that corrupt large file transfers
880 # over SSH.
881 ifneq "$(PublishLocation)" ""
882 publish-sdist :
883         $(call nTimes,10,$(PublishCp) $(SRC_DIST_TARBALL) $(PublishLocation)/dist)
884 endif
885
886 ifeq "$(GhcUnregisterised)" "YES"
887 SRC_CC_OPTS += -DNO_REGS -DUSE_MINIINTERPRETER -D__GLASGOW_HASKELL__=$(ProjectVersionInt)
888 endif
889
890 # -----------------------------------------------------------------------------
891 # Cleaning
892
893 .PHONY: clean
894
895 CLEAN_FILES += utils/ghc-pwd/ghc-pwd
896 CLEAN_FILES += utils/ghc-pwd/ghc-pwd.exe
897 CLEAN_FILES += utils/ghc-pwd/ghc-pwd.hi
898 CLEAN_FILES += utils/ghc-pwd/ghc-pwd.o
899 CLEAN_FILES += libraries/bootstrapping.conf
900
901 clean : clean_files clean_libraries
902
903 .PHONY: clean_files
904 clean_files :
905         "$(RM)" $(RM_OPTS) $(CLEAN_FILES)
906
907 .PHONY: clean_libraries
908 clean_libraries: $(patsubst %,clean_libraries/%_dist-install,$(PACKAGES) $(PACKAGES_STAGE2))
909 clean_libraries: $(patsubst %,clean_libraries/%_dist-boot,$(BOOT_PKGS))
910
911 clean_libraries:
912         "$(RM)" $(RM_OPTS) -r $(patsubst %, libraries/%/dist, $(PACKAGES) $(PACKAGES_STAGE2))
913         "$(RM)" $(RM_OPTS) $(patsubst %, libraries/%/*.buildinfo, $(PACKAGES) $(PACKAGES_STAGE2))
914
915 # We have to define a clean target for each library manually, because the
916 # libraries/*/ghc.mk files are not included when we're cleaning.
917 ifeq "$(CLEANING)" "YES"
918 $(foreach lib,$(PACKAGES) $(PACKAGES_STAGE2),\
919   $(eval $(call clean-target,libraries/$(lib),dist-install,libraries/$(lib)/dist-install)))
920 endif
921
922 distclean : clean
923         "$(RM)" $(RM_OPTS) config.cache config.status config.log mk/config.h mk/stamp-h
924         "$(RM)" $(RM_OPTS) mk/config.mk mk/are-validating.mk mk/project.mk
925         "$(RM)" $(RM_OPTS) mk/config.mk.old mk/project.mk.old
926         "$(RM)" $(RM_OPTS) extra-gcc-opts docs/users_guide/ug-book.xml
927         "$(RM)" $(RM_OPTS) compiler/ghc.cabal compiler/ghc.cabal.old
928         "$(RM)" $(RM_OPTS) ghc/ghc-bin.cabal
929         "$(RM)" $(RM_OPTS) libraries/base/include/HsBaseConfig.h
930         "$(RM)" $(RM_OPTS) libraries/directory/include/HsDirectoryConfig.h
931         "$(RM)" $(RM_OPTS) libraries/process/include/HsProcessConfig.h
932         "$(RM)" $(RM_OPTS) libraries/unix/include/HsUnixConfig.h
933         "$(RM)" $(RM_OPTS) libraries/old-time/include/HsTimeConfig.h
934
935         "$(RM)" $(RM_OPTS) $(patsubst %, libraries/%/config.log, $(PACKAGES) $(PACKAGES_STAGE2))
936         "$(RM)" $(RM_OPTS) $(patsubst %, libraries/%/config.status, $(PACKAGES) $(PACKAGES_STAGE2))
937         "$(RM)" $(RM_OPTS) $(patsubst %, libraries/%/include/Hs*Config.h, $(PACKAGES) $(PACKAGES_STAGE2))
938         "$(RM)" $(RM_OPTS) -r $(patsubst %, libraries/%/autom4te.cache, $(PACKAGES) $(PACKAGES_STAGE2))
939
940 maintainer-clean : distclean
941         "$(RM)" $(RM_OPTS) configure mk/config.h.in
942         "$(RM)" $(RM_OPTS) -r autom4te.cache libraries/*/autom4te.cache
943         "$(RM)" $(RM_OPTS) ghc.spec
944         "$(RM)" $(RM_OPTS) $(patsubst %, libraries/%/GNUmakefile, \
945                 $(PACKAGES) $(PACKAGES_STAGE2))
946         "$(RM)" $(RM_OPTS) $(patsubst %, libraries/%/ghc.mk, $(PACKAGES) $(PACKAGES_STAGE2))
947         "$(RM)" $(RM_OPTS) $(patsubst %, libraries/%/configure, \
948                 $(PACKAGES) $(PACKAGES_STAGE2))
949         "$(RM)" $(RM_OPTS) libraries/base/include/HsBaseConfig.h.in
950         "$(RM)" $(RM_OPTS) libraries/directory/include/HsDirectoryConfig.h.in
951         "$(RM)" $(RM_OPTS) libraries/process/include/HsProcessConfig.h.in
952         "$(RM)" $(RM_OPTS) libraries/unix/include/HsUnixConfig.h.in
953         "$(RM)" $(RM_OPTS) libraries/old-time/include/HsTimeConfig.h.in
954
955 .PHONY: all_libraries
956
957 .PHONY: bootstrapping-files
958 bootstrapping-files: $(OTHER_LIBS)
959 bootstrapping-files: includes/ghcautoconf.h
960 bootstrapping-files: includes/DerivedConstants.h
961 bootstrapping-files: includes/GHCConstants.h
962
963 .DELETE_ON_ERROR:
964