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