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