Add dph to build system; patch from Roman Leshchinskiy
[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 #   * remove old Makefiles, add new stubs for building in subdirs
30 #     * utils/hsc2hs/Makefile
31 #     * utils/haddock/Makefile
32 #     * mk/oldconfig.mk.in
33 #     * docs/Makefile
34 #     * docs/docbook-cheat-sheet/Makefile
35 #     * docs/ext-core/Makefile
36 #     * docs/man/Makefile
37 #     * docs/storage-mgmt/Makefile
38 #     * docs/users_guide/Makefile
39 #     * docs/vh/Makefile
40 #     * driver/Makefile
41 #     * driver/ghc/Makefile
42 #     * libraries/Makefile
43 #     * rts/dotnet/Makefile
44 #     * utils/Makefile
45 #   * docbook PDFs, e.g. "dblatex -T db2latex users_guide.xml"
46 #   * GhcProfiled
47 #   * optionally install stage3?
48 #   * shared libraries, way dyn
49 #   * get HC bootstrapping working
50 #   * add Makefiles for the rest of the utils/ programs that aren't built
51 #     by default (need to exclude them from 'make all' too)
52 #
53 # Tickets we can now close, or fix and close:
54 #
55 #   * 2966 make sure --with-gcc does the right thing (#2966)
56 #   * 1693 make distclean
57 #   * 2689 make maintainer-clean
58 #   * 3173 make install with DESTDIR
59
60 # Possible cleanups:
61 #
62 #   * per-source-file dependencies instead of one .depend file?
63 #   * eliminate undefined variables, and use --warn-undefined-variables?
64 #   * perhaps we should make all the output dirs in the .depend rule, to
65 #     avoid all these mkdirhier calls?
66 #   * put outputs from different ways in different subdirs of distdir/build,
67 #     then we don't have to use -osuf/-hisuf.  We would have to install
68 #     them in different places too, so we'd need ghc-pkg support for packages
69 #     of different ways.
70 #   * make PACKAGES generated by configure or sh boot?
71 #   * we should use a directory of package.conf files rather than a single
72 #     file for the inplace package database, so that we can express
73 #     dependencies more accurately.  Otherwise it's possible to get into
74 #     a state where the package database is out of date, and the build
75 #     system doesn't know.
76
77 # Approximate build order.
78 #
79 # The actual build order is defined by dependencies, and the phase
80 # ordering used to ensure correct ordering of makefile-generation; see
81 #    http://hackage.haskell.org/trac/ghc/wiki/Building/Architecture/Idiom/PhaseOrdering
82 #
83 #     * With bootstrapping compiler:
84 #           o Build utils/ghc-cabal
85 #           o Build utils/ghc-pkg
86 #           o Build utils/hsc2hs
87 #     * For each package:
88 #           o configure, generate package-data.mk and inplace-pkg-info
89 #           o register each package into inplace/lib/package.conf
90 #     * build libffi
91 #     * With bootstrapping compiler:
92 #           o Build libraries/{filepath,hpc,extensible-exceptions,Cabal}
93 #           o Build compiler (stage 1)
94 #     * With stage 1:
95 #           o Build libraries/*
96 #           o Build rts
97 #           o Build utils/* (except haddock)
98 #           o Build compiler (stage 2)
99 #     * With stage 2:
100 #           o Build utils/haddock
101 #           o Build compiler (stage 3) (optional)
102 #     * With haddock:
103 #           o libraries/*
104 #           o compiler
105
106 default : all
107
108 # Just bring makefiles up to date:
109 .PHONY: just-makefiles
110 just-makefiles:
111         @:
112
113 # -----------------------------------------------------------------------------
114 # Misc GNU make utils
115
116 nothing=
117 space=$(nothing) $(nothing)
118 comma=,
119
120 # Cancel all suffix rules.  Ideally we'd like to have 'make -r' turned on
121 # by default, because that disables all the implicit rules, but there doesn't
122 # seem to be a good way to do that.  This turns off all the old-style suffix
123 # rules, which does half the job and speeds up make quite a bit:
124 .SUFFIXES:
125
126 # -----------------------------------------------------------------------------
127 #                       Makefile debugging
128 # to see the effective value used for a Makefile variable, do
129 #  make show VALUE=MY_VALUE
130 #
131
132 show:
133         @echo '$(VALUE)="$($(VALUE))"'
134
135 # -----------------------------------------------------------------------------
136 # Include subsidiary build-system bits
137
138 include mk/config.mk
139
140 ifeq "$(ProjectVersion)" ""
141 $(error Please run ./configure first)
142 endif
143
144 # (Optional) build-specific configuration
145 include mk/custom-settings.mk
146
147 ifeq "$(GhcLibWays)" ""
148 $(error $$(GhcLibWays) is empty, it must contain at least one way)
149 endif
150
151 # -----------------------------------------------------------------------------
152 # Macros for standard targets
153
154 include rules/all-target.mk
155 include rules/clean-target.mk
156
157 # -----------------------------------------------------------------------------
158 # The inplace tree
159
160 $(eval $(call clean-target,inplace,,inplace))
161
162 # -----------------------------------------------------------------------------
163 # Whether to build dependencies or not
164
165 # When we're just doing 'make clean' or 'make show', then we don't need
166 # to build dependencies.
167
168 ifneq "$(findstring clean,$(MAKECMDGOALS))" ""
169 NO_INCLUDE_DEPS = YES
170 NO_INCLUDE_PKGDATA = YES
171 endif
172 ifeq "$(findstring show,$(MAKECMDGOALS))" "show"
173 NO_INCLUDE_DEPS = YES
174 # We want package-data.mk for show
175 endif
176
177 # We don't haddock base3-compat, as it has the same package name as base
178 libraries/base3-compat_dist-install_DO_HADDOCK = NO
179
180 # We don't haddock the bootstrapping libraries
181 libraries/hpc_dist-boot_DO_HADDOCK = NO
182 libraries/Cabal_dist-boot_DO_HADDOCK = NO
183 libraries/extensible-exceptions_dist-boot_DO_HADDOCK = NO
184 libraries/filepath_dist-boot_DO_HADDOCK = NO
185
186 # -----------------------------------------------------------------------------
187 # Ways
188
189 include rules/way-prelims.mk
190
191 $(foreach way,$(ALL_WAYS),\
192   $(eval $(call way-prelims,$(way))))
193
194 # -----------------------------------------------------------------------------
195 # Compilation Flags
196
197 include rules/distdir-opts.mk
198 include rules/distdir-way-opts.mk
199
200 # -----------------------------------------------------------------------------
201 # Finding source files and object files
202
203 include rules/hs-sources.mk
204 include rules/c-sources.mk
205 include rules/includes-sources.mk
206 include rules/hs-objs.mk
207 include rules/c-objs.mk
208
209 # -----------------------------------------------------------------------------
210 # Suffix rules
211
212 include rules/hs-suffix-rules-srcdir.mk
213 include rules/hs-suffix-rules.mk
214
215 # -----------------------------------------------------------------------------
216 # Suffix rules for .hi files
217
218 include rules/hi-rule.mk
219
220 $(foreach way,$(ALL_WAYS),\
221   $(eval $(call hi-rule,$(way))))
222
223 #-----------------------------------------------------------------------------
224 # C-related suffix rules
225
226 include rules/c-suffix-rules.mk
227
228 # -----------------------------------------------------------------------------
229 # Building package-data.mk files from .cabal files
230
231 include rules/package-config.mk
232
233 # -----------------------------------------------------------------------------
234 # Building dependencies
235
236 include rules/build-dependencies.mk
237
238 # -----------------------------------------------------------------------------
239 # Build package-data.mk files
240
241 include rules/build-package-data.mk
242
243 # -----------------------------------------------------------------------------
244 # Build and install a program
245
246 include rules/build-prog.mk
247 include rules/shell-wrapper.mk
248
249 # -----------------------------------------------------------------------------
250 # Build a perl script
251
252 include rules/build-perl.mk
253
254 # -----------------------------------------------------------------------------
255 # Build a package
256
257 include rules/build-package.mk
258 include rules/build-package-way.mk
259 include rules/haddock.mk
260
261 # -----------------------------------------------------------------------------
262 # Registering hand-written package descriptions (used in libffi and rts)
263
264 include rules/manual-package-config.mk
265
266 # -----------------------------------------------------------------------------
267 # Docs
268
269 include rules/docbook.mk
270
271 # -----------------------------------------------------------------------------
272 # Making bindists
273
274 include rules/bindist.mk
275
276 # -----------------------------------------------------------------------------
277 # Building libraries
278
279 # XXX generate from $(TOP)/packages
280 PACKAGES = \
281         ghc-prim \
282         integer-gmp \
283         base \
284         filepath \
285         array \
286         bytestring \
287         containers
288
289 ifeq "$(Windows)" "YES"
290 PACKAGES += Win32
291 else
292 PACKAGES += unix
293 endif
294
295 PACKAGES += \
296         old-locale \
297         old-time \
298         directory \
299         process \
300         random \
301         extensible-exceptions \
302         haskell98 \
303         hpc \
304         packedstring \
305         pretty \
306         syb \
307         template-haskell \
308         base3-compat \
309         Cabal \
310         mtl \
311         utf8-string
312
313 ifneq "$(Windows)" "YES"
314 PACKAGES += terminfo
315 endif
316
317 PACKAGES += haskeline
318
319 ifneq "$(wildcard libraries/dph)" ""
320 PACKAGES += \
321         dph/dph-base \
322         dph/dph-prim-interface \
323         dph/dph-prim-seq \
324         dph/dph-prim-par \
325         dph/dph-seq \
326         dph/dph-par
327 endif
328
329 BOOT_PKGS = Cabal hpc extensible-exceptions
330
331 # The actual .a and .so/.dll files: needed for dependencies.
332 ALL_LIBS  = $(foreach lib,$(PACKAGES),$(libraries/$(lib)_dist-install_v_LIB))
333 ifeq "$(BuildSharedLibs)" "YES"
334 ALL_LIBS += $(foreach lib,$(PACKAGES),$(libraries/$(lib)_dist-install_dyn_LIB))
335 endif
336 BOOT_LIBS = $(foreach lib,$(BOOT_PKGS),$(libraries/$(lib)_dist-boot_v_LIB))
337
338 OTHER_LIBS = libffi/libHSffi$(v_libsuf) libffi/HSffi.o
339 ifeq "$(BuildSharedLibs)" "YES"
340 OTHER_LIBS  += libffi/libHSffi$(dyn_libsuf)
341 endif
342 ifeq "$(HaveLibGmp)" "NO"
343 OTHER_LIBS += gmp/libgmp.a
344 endif
345
346 # We cannot run ghc-cabal to configure a package until we have
347 # configured and registered all of its dependencies.  So the following
348 # hack forces all the configure steps to happen in exactly the order
349 # given in the PACKAGES variable above.  Ideally we should use the
350 # correct dependencies here to allow more parallelism, but we don't
351 # know the dependencies until we've generated the pacakge-data.mk
352 # files.
353 define fixed_pkg_dep
354 libraries/$1/$2/package-data.mk : $(GHC_PKG_INPLACE) $$(if $$(fixed_pkg_prev),libraries/$$(fixed_pkg_prev)/$2/package-data.mk)
355 fixed_pkg_prev:=$1
356 endef
357
358 ifneq "$(BINDIST)" "YES"
359 fixed_pkg_prev=
360 $(foreach pkg,$(PACKAGES),$(eval $(call fixed_pkg_dep,$(pkg),dist-install)))
361
362 # We assume that the stage2 compiler depends on all the libraries, so
363 # they all get added to the package database before we try to configure
364 # it
365 compiler/stage2/package-data.mk: $(foreach pkg,$(PACKAGES),libraries/$(pkg)/dist-install/package-data.mk)
366 # haddock depends on ghc and some libraries, but depending on GHC's
367 # package-data.mk is sufficient, as that in turn depends on all the
368 # libraries
369 utils/haddock/dist/package-data.mk: compiler/stage2/package-data.mk
370
371 utils/hsc2hs/dist-install/package-data.mk: compiler/stage2/package-data.mk
372
373 # add the final two package.conf dependencies: ghc-prim depends on RTS,
374 # and RTS depends on libffi.
375 libraries/ghc-prim/dist-install/package-data.mk : rts/package.conf.inplace
376 rts/package.conf.inplace : libffi/package.conf.inplace
377 endif
378
379 # -----------------------------------------------------------------------------
380 # Special magic for the ghc-prim package
381
382 # We want the ghc-prim package to include the GHC.Prim module when it
383 # is registered, but not when it is built, because GHC.Prim is not a
384 # real source module, it is built-in to GHC.  The old build system did
385 # this using Setup.hs, but we can't do that here, so we have a flag to
386 # enable GHC.Prim in the .cabal file (so that the ghc-prim package
387 # remains compatible with the old build system for the time being).
388 # GHC.Prim module in the ghc-prim package with a flag:
389 #
390 libraries/ghc-prim_CONFIGURE_OPTS += --flag=include-ghc-prim
391
392 # And then we strip it out again before building the package:
393 define libraries/ghc-prim_PACKAGE_MAGIC
394 libraries/ghc-prim_dist-install_MODULES := $$(filter-out GHC.Prim,$$(libraries/ghc-prim_dist-install_MODULES))
395 endef
396
397 PRIMOPS_TXT = $(GHC_COMPILER_DIR)/prelude/primops.txt
398
399 libraries/ghc-prim/dist-install/build/GHC/PrimopWrappers.hs : $(GENPRIMOP_INPLACE) $(PRIMOPS_TXT)
400         $(MKDIRHIER) $(dir $@)
401         $(GENPRIMOP_INPLACE) --make-haskell-wrappers <$(PRIMOPS_TXT) >$@
402
403 libraries/ghc-prim/GHC/Prim.hs : $(GENPRIMOP_INPLACE) $(PRIMOPS_TXT)
404         $(GENPRIMOP_INPLACE) --make-haskell-source <$(PRIMOPS_TXT) >$@
405
406
407 # -----------------------------------------------------------------------------
408 # Include build instructions from all subdirs
409
410 # For the rationale behind the build phases, see
411 #   http://hackage.haskell.org/trac/ghc/wiki/Building/Architecture/Idiom/PhaseOrdering
412
413 # Setting foo_dist_DISABLE=YES means "in directory foo, for build
414 # "dist", just read the package-data.mk file, do not build anything".
415
416 # We carefully engineer things so that we can build the
417 # package-data.mk files early on: they depend only on a few tools also
418 # built early.  Having got the package-data.mk files built, we can
419 # restart make with up-to-date information about all the packages
420 # (this is phase 0).  The remaining problem is the .depend files:
421 #
422 #   - .depend files in libraries need the stage 1 compiler to build
423 #   - ghc/stage1/.depend needs compiler/stage1 built
424 #   - compiler/stage1/.depend needs the bootstrap libs built
425 #
426 # GHC 6.11+ can build a .depend file without having built the
427 # dependencies of the package, but we can't rely on the bootstrapping
428 # compiler being able to do this, which is why we have to separate the
429 # three phases above.
430
431 # So this is the final ordering:
432
433 # Phase 0 : all package-data.mk files
434 #           (requires ghc-cabal, ghc-pkg, mkdirhier, dummy-ghc etc.)
435 # Phase 1 : .depend files for bootstrap libs
436 #           (requires hsc2hs)
437 # Phase 2 : compiler/stage1/.depend
438 #           (requires bootstrap libs and genprimopcode)
439 # Phase 3 : ghc/stage1/.depend
440 #           (requires compiler/stage1)
441 #
442 # The rest : libraries/*/dist-install, compiler/stage2, ghc/stage2
443
444 BUILD_DIRS =
445
446 ifneq "$(BINDIST)" "YES"
447 BUILD_DIRS += \
448    $(GHC_MKDEPENDC_DIR) \
449    $(GHC_MKDIRHIER_DIR)
450 endif
451
452 BUILD_DIRS += \
453    gmp \
454    docs/users_guide \
455    libraries/Cabal/doc \
456    $(GHC_MANGLER_DIR) \
457    $(GHC_SPLIT_DIR) \
458    $(GHC_UNLIT_DIR) \
459    $(GHC_HP2PS_DIR)
460
461 ifneq "$(BINDIST)" "YES"
462 BUILD_DIRS += \
463    $(GHC_GENPRIMOP_DIR)
464 endif
465
466 BUILD_DIRS += \
467    driver \
468    driver/ghci \
469    driver/ghc \
470    libffi \
471    includes \
472    rts
473
474 ifneq "$(BINDIST)" "YES"
475 BUILD_DIRS += \
476    $(GHC_CABAL_DIR) \
477    $(GHC_GENAPPLY_DIR)
478 endif
479
480 BUILD_DIRS += \
481    utils/haddock \
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 \
716     extra-gcc-opts.in \
717     Makefile \
718     mk/config.mk.in \
719     $(INPLACE_BIN)/mkdirhier \
720     $(INPLACE_BIN)/ghc-cabal \
721     utils/pwd/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 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 # -----------------------------------------------------------------------------
856 # Cleaning
857
858 .PHONY: clean
859
860 clean : clean_files
861 .PHONY: clean_files
862 clean_files :
863         $(RM) $(CLEAN_FILES)
864
865 distclean : clean
866         $(RM) config.cache config.status config.log mk/config.h mk/stamp-h
867         $(RM) mk/config.mk mk/are-validating.mk mk/project.mk
868         $(RM) extra-gcc-opts docs/users_guide/ug-book.xml
869         $(RM) compiler/ghc.cabal ghc/ghc-bin.cabal
870         $(RM) libraries/base/include/HsBaseConfig.h
871         $(RM) libraries/directory/include/HsDirectoryConfig.h
872         $(RM) libraries/process/include/HsProcessConfig.h
873         $(RM) libraries/unix/include/HsUnixConfig.h
874         $(RM) libraries/old-time/include/HsTimeConfig.h
875
876 maintainer-clean : distclean
877         $(RM) configure mk/config.h.in
878         $(RM) -r autom4te.cache libraries/*/autom4te.cache
879         $(RM) ghc.spec
880         $(RM) libraries/*/GNUmakefile libraries/*/ghc.mk libraries/*/configure 
881         $(RM) libraries/base/include/HsBaseConfig.h.in
882         $(RM) libraries/directory/include/HsDirectoryConfig.h.in
883         $(RM) libraries/process/include/HsProcessConfig.h.in
884         $(RM) libraries/unix/include/HsUnixConfig.h.in
885         $(RM) libraries/old-time/include/HsTimeConfig.h.in