Fix building dph in the new build system
[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_STAGE2 += \
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_STAGE1_LIBS  = $(foreach lib,$(PACKAGES),$(libraries/$(lib)_dist-install_v_LIB))
332 ifeq "$(BuildSharedLibs)" "YES"
333 ALL_STAGE1_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) $(PACKAGES_STAGE2),$(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) $(PACKAGES_STAGE2),libraries/$(pkg)/dist-install/package-data.mk)
365 ghc/stage1/package-data.mk: compiler/stage1/package-data.mk
366 ghc/stage2/package-data.mk: compiler/stage2/package-data.mk
367 # haddock depends on ghc and some libraries, but depending on GHC's
368 # package-data.mk is sufficient, as that in turn depends on all the
369 # libraries
370 utils/haddock/dist/package-data.mk: compiler/stage2/package-data.mk
371
372 utils/hsc2hs/dist-install/package-data.mk: compiler/stage2/package-data.mk
373
374 # add the final two package.conf dependencies: ghc-prim depends on RTS,
375 # and RTS depends on libffi.
376 libraries/ghc-prim/dist-install/package-data.mk : rts/package.conf.inplace
377 rts/package.conf.inplace : libffi/package.conf.inplace
378 endif
379
380 # -----------------------------------------------------------------------------
381 # Special magic for the ghc-prim package
382
383 # We want the ghc-prim package to include the GHC.Prim module when it
384 # is registered, but not when it is built, because GHC.Prim is not a
385 # real source module, it is built-in to GHC.  The old build system did
386 # this using Setup.hs, but we can't do that here, so we have a flag to
387 # enable GHC.Prim in the .cabal file (so that the ghc-prim package
388 # remains compatible with the old build system for the time being).
389 # GHC.Prim module in the ghc-prim package with a flag:
390 #
391 libraries/ghc-prim_CONFIGURE_OPTS += --flag=include-ghc-prim
392
393 # And then we strip it out again before building the package:
394 define libraries/ghc-prim_PACKAGE_MAGIC
395 libraries/ghc-prim_dist-install_MODULES := $$(filter-out GHC.Prim,$$(libraries/ghc-prim_dist-install_MODULES))
396 endef
397
398 PRIMOPS_TXT = $(GHC_COMPILER_DIR)/prelude/primops.txt
399
400 libraries/ghc-prim/dist-install/build/GHC/PrimopWrappers.hs : $(GENPRIMOP_INPLACE) $(PRIMOPS_TXT)
401         $(MKDIRHIER) $(dir $@)
402         $(GENPRIMOP_INPLACE) --make-haskell-wrappers <$(PRIMOPS_TXT) >$@
403
404 libraries/ghc-prim/GHC/Prim.hs : $(GENPRIMOP_INPLACE) $(PRIMOPS_TXT)
405         $(GENPRIMOP_INPLACE) --make-haskell-source <$(PRIMOPS_TXT) >$@
406
407
408 # -----------------------------------------------------------------------------
409 # Include build instructions from all subdirs
410
411 # For the rationale behind the build phases, see
412 #   http://hackage.haskell.org/trac/ghc/wiki/Building/Architecture/Idiom/PhaseOrdering
413
414 # Setting foo_dist_DISABLE=YES means "in directory foo, for build
415 # "dist", just read the package-data.mk file, do not build anything".
416
417 # We carefully engineer things so that we can build the
418 # package-data.mk files early on: they depend only on a few tools also
419 # built early.  Having got the package-data.mk files built, we can
420 # restart make with up-to-date information about all the packages
421 # (this is phase 0).  The remaining problem is the .depend files:
422 #
423 #   - .depend files in libraries need the stage 1 compiler to build
424 #   - ghc/stage1/.depend needs compiler/stage1 built
425 #   - compiler/stage1/.depend needs the bootstrap libs built
426 #
427 # GHC 6.11+ can build a .depend file without having built the
428 # dependencies of the package, but we can't rely on the bootstrapping
429 # compiler being able to do this, which is why we have to separate the
430 # three phases above.
431
432 # So this is the final ordering:
433
434 # Phase 0 : all package-data.mk files
435 #           (requires ghc-cabal, ghc-pkg, mkdirhier, dummy-ghc etc.)
436 # Phase 1 : .depend files for bootstrap libs
437 #           (requires hsc2hs)
438 # Phase 2 : compiler/stage1/.depend
439 #           (requires bootstrap libs and genprimopcode)
440 # Phase 3 : ghc/stage1/.depend
441 #           (requires compiler/stage1)
442 #
443 # The rest : libraries/*/dist-install, compiler/stage2, ghc/stage2
444
445 BUILD_DIRS =
446
447 ifneq "$(BINDIST)" "YES"
448 BUILD_DIRS += \
449    $(GHC_MKDEPENDC_DIR) \
450    $(GHC_MKDIRHIER_DIR)
451 endif
452
453 BUILD_DIRS += \
454    gmp \
455    docs/users_guide \
456    libraries/Cabal/doc \
457    $(GHC_MANGLER_DIR) \
458    $(GHC_SPLIT_DIR) \
459    $(GHC_UNLIT_DIR) \
460    $(GHC_HP2PS_DIR)
461
462 ifneq "$(BINDIST)" "YES"
463 BUILD_DIRS += \
464    $(GHC_GENPRIMOP_DIR)
465 endif
466
467 BUILD_DIRS += \
468    driver \
469    driver/ghci \
470    driver/ghc \
471    libffi \
472    includes \
473    rts
474
475 ifneq "$(BINDIST)" "YES"
476 BUILD_DIRS += \
477    $(GHC_CABAL_DIR) \
478    $(GHC_GENAPPLY_DIR)
479 endif
480
481 BUILD_DIRS += \
482    utils/haddock \
483    utils/haddock/doc \
484    $(patsubst %, libraries/%, $(PACKAGES)) \
485    $(patsubst %, libraries/%, $(PACKAGES_STAGE2)) \
486    compiler \
487    $(GHC_HSC2HS_DIR) \
488    $(GHC_PKG_DIR) \
489    utils/hasktags \
490    utils/hpc \
491    utils/runghc \
492    ghc
493 ifeq "$(Windows)" "YES"
494 BUILD_DIRS += \
495    $(GHC_TOUCHY_DIR)
496 endif
497
498 # XXX libraries/% must come before any programs built with stage1, see
499 # Note [lib-depends].
500
501 ifeq "$(phase)" "0"
502 $(foreach lib,$(BOOT_PKGS),$(eval \
503   libraries/$(lib)_dist-boot_DISABLE = YES))
504 endif
505
506 ifneq "$(findstring $(phase),0 1)" ""
507 # We can build deps for compiler/stage1 in phase 2
508 compiler_stage1_DISABLE = YES
509 endif
510
511 ifneq "$(findstring $(phase),0 1 2)" ""
512 ghc_stage1_DISABLE = YES
513 endif
514
515 ifneq "$(findstring $(phase),0 1 2 3)" ""
516 # In phases 0-3, we disable stage2-3, the full libraries and haddock
517 utils/haddock_dist_DISABLE = YES
518 utils/runghc_dist_DISABLE = YES
519 utils/hpc_dist_DISABLE = YES
520 utils/hasktags_dist_DISABLE = YES
521 utils/hsc2hs_dist-install_DISABLE = YES
522 utils/ghc-pkg_dist-install_DISABLE = YES
523 compiler_stage2_DISABLE = YES
524 compiler_stage3_DISABLE = YES
525 ghc_stage2_DISABLE = YES
526 ghc_stage3_DISABLE = YES
527 $(foreach lib,$(PACKAGES) $(PACKAGES_STAGE2),$(eval \
528   libraries/$(lib)_dist-install_DISABLE = YES))
529 endif
530
531 ifneq "$(wildcard libraries/dph)" ""
532 include libraries/dph/ghc.mk
533 endif
534 include $(patsubst %, %/ghc.mk, $(BUILD_DIRS))
535
536 # We need -fno-warn-deprecated-flags to avoid failure with -Werror
537 GhcLibHcOpts += -fno-warn-deprecated-flags
538 ifeq "$(ghc_ge_609)" "YES"
539 GhcBootLibHcOpts += -fno-warn-deprecated-flags
540 endif
541
542 # Add $(GhcLibHcOpts) to all library builds
543 $(foreach pkg,$(PACKAGES) $(PACKAGES_STAGE2),$(eval libraries/$(pkg)_dist-install_HC_OPTS += $$(GhcLibHcOpts)))
544
545 # XXX Hack; remove this
546 $(foreach pkg,$(PACKAGES_STAGE2),$(eval libraries/$(pkg)_dist-install_HC_OPTS += -Wwarn))
547
548 # XXX we configure packages with the bootsrapping compiler (for
549 # dependency reasons, see the phase ordering), which doesn't
550 # necessarily support all the extensions we need, and Cabal filters
551 # out the ones it thinks aren't supported.
552 libraries/base3-compat_dist-install_HC_OPTS += -XPackageImports
553
554 # -----------------------------------------------------------------------------
555 # Bootstrapping libraries
556
557 # We need to build a few libraries with the installed GHC, since GHC itself
558 # and some of the tools depend on them:
559
560 ifneq "$(BINDIST)" "YES"
561
562 ifeq "$(wildcard $(BOOTSTRAPPING_CONF))" ""
563 $(shell echo "[]" >$(BOOTSTRAPPING_CONF))
564 endif
565
566 $(eval $(call clean-target,$(BOOTSTRAPPING_CONF),,$(BOOTSTRAPPING_CONF)))
567
568 # These three libraries do not depend on each other, so we can build
569 # them straight off:
570
571 $(eval $(call build-package,libraries/hpc,dist-boot,0))
572 $(eval $(call build-package,libraries/extensible-exceptions,dist-boot,0))
573 $(eval $(call build-package,libraries/Cabal,dist-boot,0))
574
575 # register the boot packages in strict sequence, because running
576 # multiple ghc-pkgs in parallel doesn't work (registrations may get
577 # lost).
578 fixed_pkg_prev=
579 $(foreach pkg,$(BOOT_PKGS),$(eval $(call fixed_pkg_dep,$(pkg),dist-boot)))
580
581 compiler/stage1/package-data.mk : \
582     libraries/Cabal/dist-boot/package-data.mk \
583     libraries/hpc/dist-boot/package-data.mk \
584     libraries/extensible-exceptions/dist-boot/package-data.mk
585
586 # These are necessary because the bootstrapping compiler may not know
587 # about cross-package dependencies:
588 $(compiler_stage1_depfile) : $(BOOT_LIBS)
589 $(ghc_stage1_depfile) : $(compiler_stage1_v_LIB)
590
591 $(foreach pkg,$(BOOT_PKGS),$(eval libraries/$(pkg)_dist-boot_HC_OPTS += $$(GhcBootLibHcOpts)))
592
593 endif
594
595 # -----------------------------------------------------------------------------
596 # Creating a local mingw copy on Windows
597
598 ifeq "$(Windows)" "YES"
599
600 # directories don't work well as dependencies, hence a stamp file
601 $(INPLACE)/stamp-mingw : $(MKDIRHIER)
602         $(MKDIRHIER) $(INPLACE_MINGW)/bin
603         GCC=`type -p $(WhatGccIsCalled)`; \
604         GccDir=`dirname $$GCC`; \
605         $(CP) -p $$GccDir/{gcc.exe,ar.exe,as.exe,dlltool.exe,dllwrap.exe,windres.exe} $(INPLACE_MINGW)/bin; \
606         $(CP) -Rp $$GccDir/../include $(INPLACE_MINGW); \
607         $(CP) -Rp $$GccDir/../lib     $(INPLACE_MINGW); \
608         $(CP) -Rp $$GccDir/../libexec $(INPLACE_MINGW); \
609         $(CP) -Rp $$GccDir/../mingw32 $(INPLACE_MINGW)
610         touch $(INPLACE)/stamp-mingw
611
612 install : install_mingw
613 .PHONY: install_mingw
614 install_mingw : $(INPLACE_MINGW)
615         $(CP) -Rp $(INPLACE_MINGW) $(prefix)
616
617 $(INPLACE_LIB)/perl.exe $(INPLACE_LIB)/perl56.dll :
618         $(CP) $(GhcDir)../{perl.exe,perl56.dll} $(INPLACE_LIB)
619
620 endif # Windows
621
622 libraries/ghc-prim/dist-install/doc/html/ghc-prim/ghc-prim.haddock: \
623     libraries/ghc-prim/dist-install/build/autogen/GHC/Prim.hs \
624     libraries/ghc-prim/dist-install/build/autogen/GHC/PrimopWrappers.hs
625
626 libraries/ghc-prim/dist-install/build/autogen/GHC/Prim.hs: \
627                             $(PRIMOPS_TXT) $(GENPRIMOP_INPLACE) $(MKDIRHIER)
628         $(MKDIRHIER) $(dir $@)
629         $(GENPRIMOP_INPLACE) --make-haskell-source < $< > $@
630
631 libraries/ghc-prim/dist-install/build/autogen/GHC/PrimopWrappers.hs: \
632                             $(PRIMOPS_TXT) $(GENPRIMOP_INPLACE) $(MKDIRHIER)
633         $(MKDIRHIER) $(dir $@)
634         $(GENPRIMOP_INPLACE) --make-haskell-wrappers < $< > $@
635
636 # -----------------------------------------------------------------------------
637 # Installation
638
639 install: install_packages install_libs install_libexecs install_headers \
640          install_libexec_scripts install_bins
641
642 install_bins: $(INSTALL_BINS)
643         $(INSTALL_DIR) $(DESTDIR)$(bindir)
644         for i in $(INSTALL_BINS); do \
645                 $(INSTALL_PROGRAM) $(INSTALL_BIN_OPTS) $$i $(DESTDIR)$(bindir) ;  \
646                 if test "$(darwin_TARGET_OS)" = "1"; then \
647                    sh mk/fix_install_names.sh $(libdir) $(DESTDIR)$(bindir)/$$i ; \
648                 fi ; \
649         done
650
651 install_libs: $(INSTALL_LIBS)
652         $(INSTALL_DIR) $(DESTDIR)$(libdir)
653         for i in $(INSTALL_LIBS); do \
654                 case $$i in \
655                   *.a) \
656                     $(INSTALL_DATA) $(INSTALL_OPTS) $$i $(DESTDIR)$(libdir); \
657                     $(RANLIB) $(DESTDIR)$(libdir)/`basename $$i` ;; \
658                   *.dll) \
659                     $(INSTALL_DATA) -s $(INSTALL_OPTS) $$i $(DESTDIR)$(libdir) ;; \
660                   *.so) \
661                     $(INSTALL_SHLIB) $(INSTALL_OPTS) $$i $(DESTDIR)$(libdir) ;; \
662                   *.dylib) \
663                     $(INSTALL_SHLIB) $(INSTALL_OPTS) $$i $(DESTDIR)$(libdir); \
664                     install_name_tool -id $(DESTDIR)$(libdir)/`basename $$i` $(DESTDIR)$(libdir)/`basename $$i` ;; \
665                   *) \
666                     $(INSTALL_DATA) $(INSTALL_OPTS) $$i $(DESTDIR)$(libdir); \
667                 esac; \
668         done
669
670 install_libexec_scripts: $(INSTALL_LIBEXEC_SCRIPTS)
671         $(MKDIRHIER) $(DESTDIR)$(libexecdir)
672         for i in $(INSTALL_LIBEXEC_SCRIPTS); do \
673                 $(INSTALL_SCRIPT) $(INSTALL_OPTS) $$i $(DESTDIR)$(libexecdir); \
674         done
675
676 install_libexecs:  $(INSTALL_LIBEXECS)
677         $(MKDIRHIER) $(DESTDIR)$(libexecdir)
678         for i in $(INSTALL_LIBEXECS); do \
679                 $(INSTALL_PROGRAM) $(INSTALL_BIN_OPTS) $$i $(DESTDIR)$(libexecdir); \
680         done
681
682 install_headers: $(INSTALL_HEADERS)
683         $(INSTALL_DIR) $(DESTDIR)$(headerdir)
684         for i in $(INSTALL_HEADERS); do \
685                 $(INSTALL_HEADER) $(INSTALL_OPTS) $$i $(DESTDIR)$(headerdir); \
686         done
687
688 INSTALLED_PACKAGE_CONF=$(DESTDIR)$(libdir)/package.conf
689
690 # Install packages in the right order, so that ghc-pkg doesn't complain.
691 # Also, install ghc-pkg first.
692 ifeq "$(Windows)" "NO"
693 INSTALLED_GHC_PKG_REAL=$(DESTDIR)$(libexecdir)/ghc-pkg
694 else
695 INSTALLED_GHC_PKG_REAL=$(DESTDIR)$(bindir)/ghc-pkg.exe
696 endif
697
698 install_packages: install_libexecs
699 install_packages: libffi/package.conf.install rts/package.conf.install
700         $(MKDIRHIER) $(DESTDIR)$(libdir)
701         echo "[]" > $(INSTALLED_PACKAGE_CONF)
702         $(INSTALLED_GHC_PKG_REAL) --force --global-conf $(INSTALLED_PACKAGE_CONF) update libffi/package.conf.install
703         $(INSTALLED_GHC_PKG_REAL) --force --global-conf $(INSTALLED_PACKAGE_CONF) update rts/package.conf.install
704         $(foreach p, $(PACKAGES) $(PACKAGES_STAGE2),\
705             $(GHC_CABAL_INPLACE) install \
706                  $(INSTALLED_GHC_PKG_REAL) \
707                  $(INSTALLED_PACKAGE_CONF) \
708                  libraries/$p dist-install \
709                  '$(DESTDIR)' '$(prefix)' '$(libdir)' '$(docdir)/libraries' &&) true
710         $(GHC_CABAL_INPLACE) install \
711                  $(INSTALLED_GHC_PKG_REAL) \
712                  $(INSTALLED_PACKAGE_CONF) \
713                  compiler stage2 \
714                  '$(DESTDIR)' '$(prefix)' '$(libdir)' '$(docdir)/libraries'
715
716 # -----------------------------------------------------------------------------
717 # Binary distributions
718
719 $(eval $(call bindist,.,\
720     LICENSE \
721     configure config.sub config.guess install-sh \
722     extra-gcc-opts.in \
723     Makefile \
724     mk/config.mk.in \
725     $(INPLACE_BIN)/mkdirhier \
726     $(INPLACE_BIN)/ghc-cabal \
727     utils/ghc-pwd/ghc-pwd \
728         $(BINDIST_WRAPPERS) \
729         $(BINDIST_LIBS) \
730         $(BINDIST_HI) \
731         $(BINDIST_EXTRAS) \
732     $(INSTALL_HEADERS) \
733     $(INSTALL_LIBEXECS) \
734     $(INSTALL_LIBEXEC_SCRIPTS) \
735     $(INSTALL_BINS) \
736     $(filter-out extra-gcc-opts,$(INSTALL_LIBS)) \
737     $(filter-out %/project.mk,$(filter-out mk/config.mk,$(MAKEFILE_LIST))) \
738         mk/fix_install_names.sh \
739         mk/project.mk \
740  ))
741 # mk/project.mk gets an absolute path, so we manually include it in
742 # the bindist with a relative path
743
744 binary-dist:
745         $(RM) -rf $(BIN_DIST_NAME)
746         mkdir $(BIN_DIST_NAME)
747         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
748         ln -s ../distrib/configure-bin.ac $(BIN_DIST_NAME)/configure.ac
749         cd $(BIN_DIST_NAME) && autoreconf
750         $(RM) -f $(BIN_DIST_TAR)
751 # h means "follow symlinks", e.g. if aclocal.m4 is a symlink to a source
752 # tree then we want to include the real file, not a symlink to it
753         $(TAR) hcf - -T $(BIN_DIST_LIST) | bzip2 -c >$(BIN_DIST_TAR_BZ2)
754
755 nTimes = set -e; for i in `seq 1 $(1)`; do echo Try "$$i: $(2)"; if $(2); then break; fi; done
756
757 .PHONY: publish-binary-dist
758 publish-binary-dist:
759         $(call nTimes,10,$(PublishCp) $(BIN_DIST_TAR_BZ2) $(PublishLocation)/dist)
760
761 # -----------------------------------------------------------------------------
762 # Source distributions
763
764 # Do it like this:
765 #
766 #       $ make
767 #       $ make sdist
768 #
769
770 # A source dist is built from a complete build tree, because we
771 # require some extra files not contained in a darcs checkout: the
772 # output from Happy and Alex, for example.
773 #
774 # The steps performed by 'make dist' are as follows:
775 #   - create a complete link-tree of the current build tree in /tmp
776 #   - run 'make distclean' on that tree
777 #   - remove a bunch of other files that we know shouldn't be in the dist
778 #   - tar up first the extralibs package, then the main source package
779
780 #
781 # Directory in which we're going to build the src dist
782 #
783 SRC_DIST_NAME=ghc-$(ProjectVersion)
784 SRC_DIST_DIR=$(shell pwd)/$(SRC_DIST_NAME)
785
786 #
787 # Files to include in source distributions
788 #
789 SRC_DIST_DIRS = mk rules docs distrib bindisttest gmp libffi includes utils docs rts compiler ghc driver libraries
790 SRC_DIST_FILES += \
791         configure.ac config.guess config.sub configure \
792         aclocal.m4 README ANNOUNCE HACKING LICENSE Makefile install-sh \
793         ghc.spec.in ghc.spec extra-gcc-opts.in VERSION boot ghc.mk
794
795 EXTRA_LIBS=$(patsubst %, $(SRC_DIST_NAME)/%, $(shell grep -E "extralibs|dph" packages | grep -v "^\#" | sed "s/ .*//"))
796
797 SRC_DIST_TARBALL = ghc-$(ProjectVersion)-src.tar.bz2
798 SRC_DIST_EXTRALIBS_TARBALL = ghc-$(ProjectVersion)-src-extralibs.tar.bz2
799
800 VERSION :
801         echo $(ProjectVersion) >VERSION
802
803 sdist : VERSION
804
805 # Use:
806 #     $(call sdist_file,compiler,stage2,cmm,CmmLex,x)
807 # to copy the generated file that replaces compiler/cmm/CmmLex.x, where
808 # "stage2" is the dist dir.
809 sdist_file = \
810   if test -f $(TOP)/$1/$2/build/$4.hs; then \
811     $(CP) $(TOP)/$1/$2/build/$4.hs $1/$3/ ; \
812     mv $1/$3/$4.$5 $1/$3/$4.$5.source ;\
813   else \
814     echo "does not exist: $1/$2//build/$4.hs"; \
815     exit 1; \
816   fi
817
818 .PHONY: sdist-prep
819 sdist-prep :
820         $(RM) -rf $(SRC_DIST_DIR)
821         $(RM) $(SRC_DIST_NAME).tar.gz
822         mkdir $(SRC_DIST_DIR)
823         ( cd $(SRC_DIST_DIR) \
824           && for i in $(SRC_DIST_DIRS); do mkdir $$i; (cd $$i && lndir $(TOP)/$$i ); done \
825           && for i in $(SRC_DIST_FILES); do $(LN_S) $(TOP)/$$i .; done \
826           && $(MAKE) distclean \
827           && 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 \
828           && $(call sdist_file,compiler,stage2,cmm,CmmLex,x) \
829           && $(call sdist_file,compiler,stage2,cmm,CmmParse,y) \
830           && $(call sdist_file,compiler,stage2,main,ParsePkgConf,y) \
831           && $(call sdist_file,compiler,stage2,parser,HaddockLex,x) \
832           && $(call sdist_file,compiler,stage2,parser,HaddockParse,y) \
833           && $(call sdist_file,compiler,stage2,parser,Lexer,x) \
834           && $(call sdist_file,compiler,stage2,parser,Parser,y.pp) \
835           && $(call sdist_file,compiler,stage2,parser,ParserCore,y) \
836           && $(call sdist_file,utils/hpc,dist,,HpcParser,y) \
837           && $(call sdist_file,utils/genprimopcode,dist,,Lexer,x) \
838           && $(call sdist_file,utils/genprimopcode,dist,,Parser,y) \
839           && $(RM) -rf compiler/stage[123] mk/build.mk \
840           && $(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 \
841         )
842
843 .PHONY: sdist
844 sdist : sdist-prep
845         $(TAR) chf - $(EXTRA_LIBS) | bzip2 >$(TOP)/$(SRC_DIST_EXTRALIBS_TARBALL)
846         $(RM) -rf $(EXTRA_LIBS)
847         $(TAR) chf - $(SRC_DIST_NAME) 2>$src_log | bzip2 >$(TOP)/$(SRC_DIST_TARBALL)
848
849 sdist-manifest : $(SRC_DIST_TARBALL)
850         tar tjf $(SRC_DIST_TARBALL) | sed "s|^ghc-$(ProjectVersion)/||" | sort >sdist-manifest
851
852 # Upload the distribution(s)
853 # Retrying is to work around buggy firewalls that corrupt large file transfers
854 # over SSH.
855 ifneq "$(PublishLocation)" ""
856 publish-sdist :
857         $(call nTimes,10,$(PublishCp) $(SRC_DIST_EXTRALIBS_TARBALL) $(PublishLocation)/dist)
858         $(call nTimes,10,$(PublishCp) $(SRC_DIST_TARBALL) $(PublishLocation)/dist)
859 endif
860
861 ifeq "$(GhcUnregisterised)" "YES"
862 SRC_CC_OPTS += -DNO_REGS -DUSE_MINIINTERPRETER
863 endif
864
865 # -----------------------------------------------------------------------------
866 # Cleaning
867
868 .PHONY: clean
869
870 CLEAN_FILES += utils/ghc-pwd/ghc-pwd
871 CLEAN_FILES += utils/ghc-pwd/ghc-pwd.exe
872 CLEAN_FILES += utils/ghc-pwd/ghc-pwd.hi
873 CLEAN_FILES += utils/ghc-pwd/ghc-pwd.o
874
875 clean : clean_files
876 .PHONY: clean_files
877 clean_files :
878         $(RM) $(CLEAN_FILES)
879
880 distclean : clean
881         $(RM) config.cache config.status config.log mk/config.h mk/stamp-h
882         $(RM) mk/config.mk mk/are-validating.mk mk/project.mk
883         $(RM) extra-gcc-opts docs/users_guide/ug-book.xml
884         $(RM) compiler/ghc.cabal ghc/ghc-bin.cabal
885         $(RM) libraries/base/include/HsBaseConfig.h
886         $(RM) libraries/directory/include/HsDirectoryConfig.h
887         $(RM) libraries/process/include/HsProcessConfig.h
888         $(RM) libraries/unix/include/HsUnixConfig.h
889         $(RM) libraries/old-time/include/HsTimeConfig.h
890
891 maintainer-clean : distclean
892         $(RM) configure mk/config.h.in
893         $(RM) -r autom4te.cache libraries/*/autom4te.cache
894         $(RM) ghc.spec
895         $(RM) libraries/*/GNUmakefile libraries/*/ghc.mk libraries/*/configure 
896         $(RM) libraries/base/include/HsBaseConfig.h.in
897         $(RM) libraries/directory/include/HsDirectoryConfig.h.in
898         $(RM) libraries/process/include/HsProcessConfig.h.in
899         $(RM) libraries/unix/include/HsUnixConfig.h.in
900         $(RM) libraries/old-time/include/HsTimeConfig.h.in
901
902 .PHONY: all_libraries
903