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