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