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