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