Make dph required
[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 ifneq "$(findstring clean,$(MAKECMDGOALS))" ""
138 -include mk/config.mk
139 else
140 include mk/config.mk
141 ifeq "$(ProjectVersion)" ""
142 $(error Please run ./configure first)
143 endif
144 endif
145
146 # (Optional) build-specific configuration
147 include mk/custom-settings.mk
148
149 ifeq "$(findstring clean,$(MAKECMDGOALS))" ""
150 ifeq "$(GhcLibWays)" ""
151 $(error $$(GhcLibWays) is empty, it must contain at least one way)
152 endif
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 PACKAGES_STAGE2 += \
324         dph/dph-base \
325         dph/dph-prim-interface \
326         dph/dph-prim-seq \
327         dph/dph-prim-par \
328         dph/dph-seq \
329         dph/dph-par
330
331 BOOT_PKGS = Cabal hpc extensible-exceptions
332
333 # The actual .a and .so/.dll files: needed for dependencies.
334 ALL_STAGE1_LIBS  = $(foreach lib,$(PACKAGES),$(libraries/$(lib)_dist-install_v_LIB))
335 ifeq "$(BuildSharedLibs)" "YES"
336 ALL_STAGE1_LIBS += $(foreach lib,$(PACKAGES),$(libraries/$(lib)_dist-install_dyn_LIB))
337 endif
338 BOOT_LIBS = $(foreach lib,$(BOOT_PKGS),$(libraries/$(lib)_dist-boot_v_LIB))
339
340 OTHER_LIBS = libffi/libHSffi$(v_libsuf) libffi/HSffi.o
341 ifeq "$(BuildSharedLibs)" "YES"
342 OTHER_LIBS  += libffi/libHSffi$(dyn_libsuf)
343 endif
344 ifeq "$(HaveLibGmp)" "NO"
345 OTHER_LIBS += gmp/libgmp.a
346 endif
347
348 # We cannot run ghc-cabal to configure a package until we have
349 # configured and registered all of its dependencies.  So the following
350 # hack forces all the configure steps to happen in exactly the order
351 # given in the PACKAGES variable above.  Ideally we should use the
352 # correct dependencies here to allow more parallelism, but we don't
353 # know the dependencies until we've generated the pacakge-data.mk
354 # files.
355 define fixed_pkg_dep
356 libraries/$1/$2/package-data.mk : $$(GHC_PKG_INPLACE) $$(if $$(fixed_pkg_prev),libraries/$$(fixed_pkg_prev)/$2/package-data.mk)
357 fixed_pkg_prev:=$1
358 endef
359
360 ifneq "$(BINDIST)" "YES"
361 fixed_pkg_prev=
362 $(foreach pkg,$(PACKAGES) $(PACKAGES_STAGE2),$(eval $(call fixed_pkg_dep,$(pkg),dist-install)))
363
364 # We assume that the stage2 compiler depends on all the libraries, so
365 # they all get added to the package database before we try to configure
366 # it
367 compiler/stage2/package-data.mk: $(foreach pkg,$(PACKAGES) $(PACKAGES_STAGE2),libraries/$(pkg)/dist-install/package-data.mk)
368 ghc/stage1/package-data.mk: compiler/stage1/package-data.mk
369 ghc/stage2/package-data.mk: compiler/stage2/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    utils/haddock/doc \
487    $(patsubst %, libraries/%, $(PACKAGES)) \
488    $(patsubst %, libraries/%, $(PACKAGES_STAGE2)) \
489    libraries/dph \
490    compiler \
491    $(GHC_HSC2HS_DIR) \
492    $(GHC_PKG_DIR) \
493    utils/hpc \
494    utils/runghc \
495    ghc
496 ifeq "$(Windows)" "YES"
497 BUILD_DIRS += \
498    $(GHC_TOUCHY_DIR)
499 endif
500
501 # XXX libraries/% must come before any programs built with stage1, see
502 # Note [lib-depends].
503
504 ifeq "$(phase)" "0"
505 $(foreach lib,$(BOOT_PKGS),$(eval \
506   libraries/$(lib)_dist-boot_DISABLE = YES))
507 endif
508
509 ifneq "$(findstring $(phase),0 1)" ""
510 # We can build deps for compiler/stage1 in phase 2
511 compiler_stage1_DISABLE = YES
512 endif
513
514 ifneq "$(findstring $(phase),0 1 2)" ""
515 ghc_stage1_DISABLE = YES
516 endif
517
518 ifneq "$(findstring $(phase),0 1 2 3)" ""
519 # In phases 0-3, we disable stage2-3, the full libraries and haddock
520 utils/haddock_dist_DISABLE = YES
521 utils/runghc_dist_DISABLE = YES
522 utils/hpc_dist_DISABLE = YES
523 utils/hsc2hs_dist-install_DISABLE = YES
524 utils/ghc-pkg_dist-install_DISABLE = YES
525 compiler_stage2_DISABLE = YES
526 compiler_stage3_DISABLE = YES
527 ghc_stage2_DISABLE = YES
528 ghc_stage3_DISABLE = YES
529 $(foreach lib,$(PACKAGES) $(PACKAGES_STAGE2),$(eval \
530   libraries/$(lib)_dist-install_DISABLE = YES))
531 endif
532
533 include $(patsubst %, %/ghc.mk, $(BUILD_DIRS))
534
535 # We need -fno-warn-deprecated-flags to avoid failure with -Werror
536 GhcLibHcOpts += -fno-warn-deprecated-flags
537 ifeq "$(ghc_ge_609)" "YES"
538 GhcBootLibHcOpts += -fno-warn-deprecated-flags
539 endif
540
541 # Add $(GhcLibHcOpts) to all library builds
542 $(foreach pkg,$(PACKAGES) $(PACKAGES_STAGE2),$(eval libraries/$(pkg)_dist-install_HC_OPTS += $$(GhcLibHcOpts)))
543
544 # XXX Hack; remove this
545 $(foreach pkg,$(PACKAGES_STAGE2),$(eval libraries/$(pkg)_dist-install_HC_OPTS += -Wwarn))
546
547 # XXX we configure packages with the bootsrapping compiler (for
548 # dependency reasons, see the phase ordering), which doesn't
549 # necessarily support all the extensions we need, and Cabal filters
550 # out the ones it thinks aren't supported.
551 libraries/base3-compat_dist-install_HC_OPTS += -XPackageImports
552
553 # -----------------------------------------------------------------------------
554 # Bootstrapping libraries
555
556 # We need to build a few libraries with the installed GHC, since GHC itself
557 # and some of the tools depend on them:
558
559 ifneq "$(BINDIST)" "YES"
560
561 ifneq "$(BOOTSTRAPPING_CONF)" ""
562 ifeq "$(wildcard $(BOOTSTRAPPING_CONF))" ""
563 $(shell echo "[]" >$(BOOTSTRAPPING_CONF))
564 endif
565 endif
566
567 $(eval $(call clean-target,$(BOOTSTRAPPING_CONF),,$(BOOTSTRAPPING_CONF)))
568
569 # These three libraries do not depend on each other, so we can build
570 # them straight off:
571
572 $(eval $(call build-package,libraries/hpc,dist-boot,0))
573 $(eval $(call build-package,libraries/extensible-exceptions,dist-boot,0))
574 $(eval $(call build-package,libraries/Cabal,dist-boot,0))
575
576 # register the boot packages in strict sequence, because running
577 # multiple ghc-pkgs in parallel doesn't work (registrations may get
578 # lost).
579 fixed_pkg_prev=
580 $(foreach pkg,$(BOOT_PKGS),$(eval $(call fixed_pkg_dep,$(pkg),dist-boot)))
581
582 compiler/stage1/package-data.mk : \
583     libraries/Cabal/dist-boot/package-data.mk \
584     libraries/hpc/dist-boot/package-data.mk \
585     libraries/extensible-exceptions/dist-boot/package-data.mk
586
587 # These are necessary because the bootstrapping compiler may not know
588 # about cross-package dependencies:
589 $(compiler_stage1_depfile) : $(BOOT_LIBS)
590 $(ghc_stage1_depfile) : $(compiler_stage1_v_LIB)
591
592 $(foreach pkg,$(BOOT_PKGS),$(eval libraries/$(pkg)_dist-boot_HC_OPTS += $$(GhcBootLibHcOpts)))
593
594 endif
595
596 # -----------------------------------------------------------------------------
597 # Creating a local mingw copy on Windows
598
599 ifeq "$(Windows)" "YES"
600
601 # directories don't work well as dependencies, hence a stamp file
602 $(INPLACE)/stamp-mingw : $(MKDIRHIER)
603         $(MKDIRHIER) $(INPLACE_MINGW)/bin
604         GCC=`type -p $(WhatGccIsCalled)`; \
605         GccDir=`dirname $$GCC`; \
606         $(CP) -p $$GccDir/{gcc.exe,ar.exe,as.exe,dlltool.exe,dllwrap.exe,windres.exe} $(INPLACE_MINGW)/bin; \
607         $(CP) -Rp $$GccDir/../include $(INPLACE_MINGW); \
608         $(CP) -Rp $$GccDir/../lib     $(INPLACE_MINGW); \
609         $(CP) -Rp $$GccDir/../libexec $(INPLACE_MINGW); \
610         $(CP) -Rp $$GccDir/../mingw32 $(INPLACE_MINGW)
611         touch $(INPLACE)/stamp-mingw
612
613 install : install_mingw
614 .PHONY: install_mingw
615 install_mingw : $(INPLACE_MINGW)
616         $(CP) -Rp $(INPLACE_MINGW) $(prefix)
617
618 $(INPLACE_LIB)/perl.exe $(INPLACE_LIB)/perl56.dll :
619         $(CP) $(GhcDir)../{perl.exe,perl56.dll} $(INPLACE_LIB)
620
621 endif # Windows
622
623 libraries/ghc-prim/dist-install/doc/html/ghc-prim/ghc-prim.haddock: \
624     libraries/ghc-prim/dist-install/build/autogen/GHC/Prim.hs \
625     libraries/ghc-prim/dist-install/build/autogen/GHC/PrimopWrappers.hs
626
627 libraries/ghc-prim/dist-install/build/autogen/GHC/Prim.hs: \
628                             $(PRIMOPS_TXT) $(GENPRIMOP_INPLACE) $(MKDIRHIER)
629         $(MKDIRHIER) $(dir $@)
630         $(GENPRIMOP_INPLACE) --make-haskell-source < $< > $@
631
632 libraries/ghc-prim/dist-install/build/autogen/GHC/PrimopWrappers.hs: \
633                             $(PRIMOPS_TXT) $(GENPRIMOP_INPLACE) $(MKDIRHIER)
634         $(MKDIRHIER) $(dir $@)
635         $(GENPRIMOP_INPLACE) --make-haskell-wrappers < $< > $@
636
637 # -----------------------------------------------------------------------------
638 # Installation
639
640 install: install_packages install_libs install_libexecs install_headers \
641          install_libexec_scripts install_bins
642
643 install_bins: $(INSTALL_BINS)
644         $(INSTALL_DIR) $(DESTDIR)$(bindir)
645         for i in $(INSTALL_BINS); do \
646                 $(INSTALL_PROGRAM) $(INSTALL_BIN_OPTS) $$i $(DESTDIR)$(bindir) ;  \
647                 if test "$(darwin_TARGET_OS)" = "1"; then \
648                    sh mk/fix_install_names.sh $(libdir) $(DESTDIR)$(bindir)/$$i ; \
649                 fi ; \
650         done
651
652 install_libs: $(INSTALL_LIBS)
653         $(INSTALL_DIR) $(DESTDIR)$(libdir)
654         for i in $(INSTALL_LIBS); do \
655                 case $$i in \
656                   *.a) \
657                     $(INSTALL_DATA) $(INSTALL_OPTS) $$i $(DESTDIR)$(libdir); \
658                     $(RANLIB) $(DESTDIR)$(libdir)/`basename $$i` ;; \
659                   *.dll) \
660                     $(INSTALL_DATA) -s $(INSTALL_OPTS) $$i $(DESTDIR)$(libdir) ;; \
661                   *.so) \
662                     $(INSTALL_SHLIB) $(INSTALL_OPTS) $$i $(DESTDIR)$(libdir) ;; \
663                   *.dylib) \
664                     $(INSTALL_SHLIB) $(INSTALL_OPTS) $$i $(DESTDIR)$(libdir); \
665                     install_name_tool -id $(DESTDIR)$(libdir)/`basename $$i` $(DESTDIR)$(libdir)/`basename $$i` ;; \
666                   *) \
667                     $(INSTALL_DATA) $(INSTALL_OPTS) $$i $(DESTDIR)$(libdir); \
668                 esac; \
669         done
670
671 install_libexec_scripts: $(INSTALL_LIBEXEC_SCRIPTS)
672         $(MKDIRHIER) $(DESTDIR)$(libexecdir)
673         for i in $(INSTALL_LIBEXEC_SCRIPTS); do \
674                 $(INSTALL_SCRIPT) $(INSTALL_OPTS) $$i $(DESTDIR)$(libexecdir); \
675         done
676
677 install_libexecs:  $(INSTALL_LIBEXECS)
678         $(MKDIRHIER) $(DESTDIR)$(libexecdir)
679         for i in $(INSTALL_LIBEXECS); do \
680                 $(INSTALL_PROGRAM) $(INSTALL_BIN_OPTS) $$i $(DESTDIR)$(libexecdir); \
681         done
682
683 install_headers: $(INSTALL_HEADERS)
684         $(INSTALL_DIR) $(DESTDIR)$(headerdir)
685         for i in $(INSTALL_HEADERS); do \
686                 $(INSTALL_HEADER) $(INSTALL_OPTS) $$i $(DESTDIR)$(headerdir); \
687         done
688
689 INSTALLED_PACKAGE_CONF=$(DESTDIR)$(libdir)/package.conf
690
691 # Install packages in the right order, so that ghc-pkg doesn't complain.
692 # Also, install ghc-pkg first.
693 ifeq "$(Windows)" "NO"
694 INSTALLED_GHC_PKG_REAL=$(DESTDIR)$(libexecdir)/ghc-pkg
695 else
696 INSTALLED_GHC_PKG_REAL=$(DESTDIR)$(bindir)/ghc-pkg.exe
697 endif
698
699 install_packages: install_libexecs
700 install_packages: libffi/package.conf.install rts/package.conf.install
701         $(MKDIRHIER) $(DESTDIR)$(libdir)
702         echo "[]" > $(INSTALLED_PACKAGE_CONF)
703         $(INSTALLED_GHC_PKG_REAL) --force --global-conf $(INSTALLED_PACKAGE_CONF) update libffi/package.conf.install
704         $(INSTALLED_GHC_PKG_REAL) --force --global-conf $(INSTALLED_PACKAGE_CONF) update rts/package.conf.install
705         $(foreach p, $(PACKAGES) $(PACKAGES_STAGE2),\
706             $(GHC_CABAL_INPLACE) install \
707                  $(INSTALLED_GHC_PKG_REAL) \
708                  $(INSTALLED_PACKAGE_CONF) \
709                  libraries/$p dist-install \
710                  '$(DESTDIR)' '$(prefix)' '$(libdir)' '$(docdir)/libraries' &&) true
711         $(GHC_CABAL_INPLACE) install \
712                  $(INSTALLED_GHC_PKG_REAL) \
713                  $(INSTALLED_PACKAGE_CONF) \
714                  compiler stage2 \
715                  '$(DESTDIR)' '$(prefix)' '$(libdir)' '$(docdir)/libraries'
716
717 # -----------------------------------------------------------------------------
718 # Binary distributions
719
720 $(eval $(call bindist,.,\
721     LICENSE \
722     configure config.sub config.guess install-sh \
723     extra-gcc-opts.in \
724     Makefile \
725     mk/config.mk.in \
726     $(INPLACE_BIN)/mkdirhier \
727     $(INPLACE_BIN)/ghc-cabal \
728     utils/ghc-pwd/ghc-pwd \
729         $(BINDIST_WRAPPERS) \
730         $(BINDIST_LIBS) \
731         $(BINDIST_HI) \
732         $(BINDIST_EXTRAS) \
733     $(INSTALL_HEADERS) \
734     $(INSTALL_LIBEXECS) \
735     $(INSTALL_LIBEXEC_SCRIPTS) \
736     $(INSTALL_BINS) \
737     $(filter-out extra-gcc-opts,$(INSTALL_LIBS)) \
738     $(filter-out %/project.mk,$(filter-out mk/config.mk,$(MAKEFILE_LIST))) \
739         mk/fix_install_names.sh \
740         mk/project.mk \
741  ))
742 # mk/project.mk gets an absolute path, so we manually include it in
743 # the bindist with a relative path
744
745 binary-dist:
746         $(RM) -rf $(BIN_DIST_NAME)
747         mkdir $(BIN_DIST_NAME)
748         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
749         ln -s ../distrib/configure-bin.ac $(BIN_DIST_NAME)/configure.ac
750         cd $(BIN_DIST_NAME) && autoreconf
751         $(RM) -f $(BIN_DIST_TAR)
752 # h means "follow symlinks", e.g. if aclocal.m4 is a symlink to a source
753 # tree then we want to include the real file, not a symlink to it
754         $(TAR) hcf - -T $(BIN_DIST_LIST) | bzip2 -c >$(BIN_DIST_TAR_BZ2)
755
756 nTimes = set -e; for i in `seq 1 $(1)`; do echo Try "$$i: $(2)"; if $(2); then break; fi; done
757
758 .PHONY: publish-binary-dist
759 publish-binary-dist:
760         $(call nTimes,10,$(PublishCp) $(BIN_DIST_TAR_BZ2) $(PublishLocation)/dist)
761
762 # -----------------------------------------------------------------------------
763 # Source distributions
764
765 # Do it like this:
766 #
767 #       $ make
768 #       $ make sdist
769 #
770
771 # A source dist is built from a complete build tree, because we
772 # require some extra files not contained in a darcs checkout: the
773 # output from Happy and Alex, for example.
774 #
775 # The steps performed by 'make dist' are as follows:
776 #   - create a complete link-tree of the current build tree in /tmp
777 #   - run 'make distclean' on that tree
778 #   - remove a bunch of other files that we know shouldn't be in the dist
779 #   - tar up first the extralibs package, then the main source package
780
781 #
782 # Directory in which we're going to build the src dist
783 #
784 SRC_DIST_NAME=ghc-$(ProjectVersion)
785 SRC_DIST_DIR=$(shell pwd)/$(SRC_DIST_NAME)
786
787 #
788 # Files to include in source distributions
789 #
790 SRC_DIST_DIRS = mk rules docs distrib bindisttest gmp libffi includes utils docs rts compiler ghc driver libraries
791 SRC_DIST_FILES += \
792         configure.ac config.guess config.sub configure \
793         aclocal.m4 README ANNOUNCE HACKING LICENSE Makefile install-sh \
794         ghc.spec.in ghc.spec extra-gcc-opts.in VERSION boot ghc.mk
795
796 SRC_DIST_TARBALL = ghc-$(ProjectVersion)-src.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 - $(SRC_DIST_NAME) 2>$src_log | bzip2 >$(TOP)/$(SRC_DIST_TARBALL)
844
845 sdist-manifest : $(SRC_DIST_TARBALL)
846         tar tjf $(SRC_DIST_TARBALL) | sed "s|^ghc-$(ProjectVersion)/||" | sort >sdist-manifest
847
848 # Upload the distribution(s)
849 # Retrying is to work around buggy firewalls that corrupt large file transfers
850 # over SSH.
851 ifneq "$(PublishLocation)" ""
852 publish-sdist :
853         $(call nTimes,10,$(PublishCp) $(SRC_DIST_TARBALL) $(PublishLocation)/dist)
854 endif
855
856 ifeq "$(GhcUnregisterised)" "YES"
857 SRC_CC_OPTS += -DNO_REGS -DUSE_MINIINTERPRETER
858 endif
859
860 # -----------------------------------------------------------------------------
861 # Cleaning
862
863 .PHONY: clean
864
865 CLEAN_FILES += utils/ghc-pwd/ghc-pwd
866 CLEAN_FILES += utils/ghc-pwd/ghc-pwd.exe
867 CLEAN_FILES += utils/ghc-pwd/ghc-pwd.hi
868 CLEAN_FILES += utils/ghc-pwd/ghc-pwd.o
869
870 clean : clean_files
871 .PHONY: clean_files
872 clean_files :
873         $(RM) $(CLEAN_FILES)
874
875 distclean : clean
876         $(RM) config.cache config.status config.log mk/config.h mk/stamp-h
877         $(RM) mk/config.mk mk/are-validating.mk mk/project.mk
878         $(RM) extra-gcc-opts docs/users_guide/ug-book.xml
879         $(RM) compiler/ghc.cabal ghc/ghc-bin.cabal
880         $(RM) libraries/base/include/HsBaseConfig.h
881         $(RM) libraries/directory/include/HsDirectoryConfig.h
882         $(RM) libraries/process/include/HsProcessConfig.h
883         $(RM) libraries/unix/include/HsUnixConfig.h
884         $(RM) libraries/old-time/include/HsTimeConfig.h
885
886 maintainer-clean : distclean
887         $(RM) configure mk/config.h.in
888         $(RM) -r autom4te.cache libraries/*/autom4te.cache
889         $(RM) ghc.spec
890         $(RM) $(patsubst %, libraries/%/GNUmakefile, \
891                 $(PACKAGES) $(PACKAGES_STAGE2))
892         $(RM) $(patsubst %, libraries/%/ghc.mk, $(PACKAGES) $(PACKAGES_STAGE2))
893         $(RM) $(patsubst %, libraries/%/configure, \
894                 $(PACKAGES) $(PACKAGES_STAGE2))
895         $(RM) libraries/base/include/HsBaseConfig.h.in
896         $(RM) libraries/directory/include/HsDirectoryConfig.h.in
897         $(RM) libraries/process/include/HsProcessConfig.h.in
898         $(RM) libraries/unix/include/HsUnixConfig.h.in
899         $(RM) libraries/old-time/include/HsTimeConfig.h.in
900
901 .PHONY: all_libraries
902