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