Build dph with the stage2 compiler
[ghc-hetmet.git] / Makefile
1 ############################################################################
2 #
3 #               This is the top-level Makefile for GHC
4 #
5 # Targets: 
6 #
7 #       bootstrap (DEFAULT)
8 #               Builds GHC, then builds the libraries,
9 #               then uses this GHC ("stage 1") to build itself
10 #               ("stage 2").
11 #
12 #       bootstrap2
13 #               Same as bootstrap
14 #
15 #       bootstrap3
16 #               bootstrap2 + we build GHC one more time ("stage 3")
17 #
18 #       stage1
19 #               Just build up to stage 1
20 #
21 #       stage2
22 #               Just build stage 2 (stage 1 must be built)
23 #
24 #       stage3
25 #               Just build stage 3 (stage 2 must be built)
26 #
27 #       all
28 #               Same as bootstrap
29 #
30 #       install
31 #               Install everything, including stage 2 compiler by default
32 #               (override with stage=3, for example).
33 #
34 #       dist
35 #               Make a source dist (WARNING: runs 'make distclean' first)
36 #
37 #       binary-dist
38 #               Builds a binary distribution
39 #
40 #       framework-pkg  [MacOS only]
41 #               Builds /Library/Frameworks/GHC.framework wrapped into a Mac
42 #               installer package
43 #
44 #       framework-binary-dist  [MacOS only]
45 #               Builds GHC.framework encapsulating a binary distribution
46 #               (to give a relocatable framework)
47 #
48 #       hc-file-bundle
49 #               Builds an HC-file bundle, for bootstrapping
50 #
51 #       clean, distclean, maintainer-clean
52 #               Increasing levels of cleanliness
53 #
54 ############################################################################
55
56 TOP=.
57 include $(TOP)/mk/boilerplate.mk
58
59 #
60 # Order is important! It's e.g. necessary to descend into include/
61 # before the rest to have a config.h, etc.
62 #
63 # If we're booting from .hc files, swap the order
64 # we descend into subdirs - to boot utils must be before driver.
65 #
66 .PHONY: stage1 stage2 stage3 bootstrap bootstrap2 bootstrap3
67
68 # We can't 'make boot' in libraries until stage1 is built
69 ifeq "$(BootingFromHc)" "YES"
70 SUBDIRS_BUILD = includes compiler docs utils driver
71 else
72 SUBDIRS_BUILD = includes utils driver docs compiler libraries/Cabal/doc
73 endif
74
75 SUBDIRS = gmp libffi includes utils docs rts compiler ghc driver libraries libraries/Cabal/doc
76
77 check-all: check-packages check-tools
78
79 # Sanity check that all the boot libraries are in the tree, to catch
80 # failure to run darcs-all.
81 check-packages :
82         @ds=`grep "^[^# ][^ ]*  *[^ ][^ ]*  *[^ ][^ ]*$$" packages | sed "s/ .*//"`;\
83         for d in $$ds; do \
84           if test ! -d $$d; then \
85              echo "Looks like you're missing $$d,"; \
86              echo "maybe you haven't done './darcs-all get'?"; \
87              exit 1; \
88           fi \
89         done
90         @if test ! -f libraries/base/configure; then \
91             echo "Looks like you're missing base's configure script."; \
92             echo "Did you run 'sh boot' at the top level?"; \
93             exit 1; \
94         fi
95
96 HAVE_EVAL := NO
97 $(eval HAVE_EVAL := YES)
98
99 check-tools:
100 ifeq "$(HSCOLOUR_SRCS) $(HSCOLOUR)" "YES "
101         @echo "HsColour needed but wasn't found."
102         @echo "Set HSCOLOUR_SRCS=NO if you don't want to use it"
103         exit 1
104 endif
105 ifeq "$(HAVE_EVAL)" "NO"
106         @echo "Your make doesn't support eval. You need GNU make >= 3.80"
107         exit 1
108 endif
109         @:
110
111 ifeq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
112 ifneq "$(WhatGccIsCalled)" ""
113 GCC_LIB_DEP = stamp.inplace-gcc-lib
114 endif
115 endif
116
117 stage1 : $(GCC_LIB_DEP) check-all
118         $(MAKE) -C libraries boot
119         $(MAKE) -C gmp       all
120         $(MAKE) -C utils/mkdependC boot
121         $(MAKE) -C utils with-bootstrapping-compiler
122         @case '${MFLAGS}' in *-[ik]*) x_on_err=0;; *-r*[ik]*) x_on_err=0;; *) x_on_err=1;; esac; \
123         for i in $(SUBDIRS_BUILD); do \
124           echo "------------------------------------------------------------------------"; \
125           echo "== $(MAKE) boot $(MFLAGS);"; \
126           echo " in $(shell pwd)/$$i"; \
127           echo "------------------------------------------------------------------------"; \
128           $(MAKE) --no-print-directory -C $$i $(MFLAGS) boot; \
129           if [ $$? -eq 0 -o $$x_on_err -eq 0 ] ;  then true; else exit 1; fi; \
130         done; \
131         for i in $(SUBDIRS_BUILD); do \
132           echo "------------------------------------------------------------------------"; \
133           echo "== $(MAKE) all $(MFLAGS);"; \
134           echo " in $(shell pwd)/$$i"; \
135           echo "------------------------------------------------------------------------"; \
136           $(MAKE) --no-print-directory -C $$i $(MFLAGS) all; \
137           if [ $$? -eq 0 -o $$x_on_err -eq 0 ] ;  then true; else exit 1; fi; \
138         done
139         $(MAKE) -C libffi    all
140         $(MAKE) -C rts boot
141         $(MAKE) -C rts
142         $(MAKE) -C libraries all
143
144 # When making distributions (i.e., whether with binary-dist or using the 
145 # vanilla install target to create an installer package), we can have problems
146 # if some things (e.g. ghc-pkg) are compiled with the bootstrapping compiler 
147 # and some (e.g. the stage 2 compiler) with the stage1 compiler. See #1860 for
148 # an example.  Thus, we explicitly build a second version with the stage 1 
149 # compiler of all utils that get installed and of all extra support binaries
150 # includes in binary dists.
151 stage2 : check-all
152         $(MAKE) -C compiler stage=2 boot
153         $(MAKE) -C compiler stage=2
154         $(MAKE) -C utils with-stage-2
155         $(MAKE) -C libraries stage=2 all
156 ifeq "$(HADDOCK_DOCS)" "YES"
157         $(MAKE) -C libraries doc
158         $(MAKE) -C compiler  doc stage=2
159 endif
160
161 stage3 : check-all
162         $(MAKE) -C compiler stage=3 boot
163         $(MAKE) -C compiler stage=3
164
165 bootstrap  : bootstrap2
166
167 bootstrap2 : stage1
168         $(MAKE) stage2
169
170 bootstrap3 : bootstrap2
171         $(MAKE) stage3
172
173 ifeq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
174 ifneq "$(WhatGccIsCalled)" ""
175 all :: stamp.inplace-gcc-lib
176
177 .PHONY: stamp.inplace-gcc-lib
178
179 # This is a hack to make Cabal able to find ld when we run tests with
180 # the inplace ghc. We should probably install all the gcc stuff in our
181 # tree somewhere, and then have install copy it from there rather than
182 # from the filesystem.
183 stamp.inplace-gcc-lib:
184         $(RM) -r ghc/gcc-lib
185         mkdir ghc/gcc-lib
186         cp $(LD) ghc/gcc-lib
187         touch $@
188
189 clean ::
190         $(RM) -r ghc/gcc-lib
191         $(RM) -f inplace-gcc-lib
192 endif
193 endif
194
195 all :: bootstrap
196
197 # -----------------------------------------------------------------------------
198 # Installing
199
200 # We want to install the stage 2 bootstrapped compiler by default, but we let
201 # the user override this by saying 'make install stage=1', for example.
202 ifeq "$(stage)" ""
203 INSTALL_STAGE = stage=2
204 else
205 INSTALL_STAGE =
206 endif
207
208 install-strip:
209         $(MAKE) INSTALL_PROGRAM='$(INSTALL_PROGRAM) -s' install
210
211 # Same as default rule, but we pass $(INSTALL_STAGE) to $(MAKE) too
212 install :: check-packages
213         $(MKDIRHIER) $(DESTDIR)$(datadir)
214         echo "[]" > $(DESTDIR)$(datadir)/package.conf
215         @case '${MFLAGS}' in *-[ik]*) x_on_err=0;; *-r*[ik]*) x_on_err=0;; *) x_on_err=1;; esac; \
216         for i in $(SUBDIRS); do \
217           echo "------------------------------------------------------------------------"; \
218           echo "== $(MAKE) $@ $(MFLAGS);"; \
219           echo " in $(shell pwd)/$$i"; \
220           echo "------------------------------------------------------------------------"; \
221           $(MAKE) --no-print-directory -C $$i $(INSTALL_STAGE) $(MFLAGS) $@; \
222           if [ $$? -eq 0 -o $$x_on_err -eq 0 ] ;  then true; else exit 1; fi; \
223         done
224
225 ifeq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
226 # These files need to be in the InstallShield
227 # INSTALL_DATAS rather than INSTALL_DOCS is used so these files go
228 # in the top-level directory of the distribution
229 INSTALL_DATAS += ANNOUNCE LICENSE README
230 endif
231
232 # If installing on Windows with MinGW32, copy the gcc compiler, headers and libs
233 # and the perl interpreter and dll into the GHC prefix directory.
234 # Gcc and Perl source locations derived from configuration data.
235 ifeq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
236 ifneq "$(WhatGccIsCalled)" ""
237 install ::
238         -mkdir $(prefix)/gcc-lib
239         -mkdir $(prefix)/include
240         -mkdir $(prefix)/include/mingw
241         -cp -rp $(GccDir)../include/* $(prefix)/include/mingw
242         -cp -rp $(GccDir)../lib/gcc-lib/mingw32/$(GccVersion)/* $(prefix)/gcc-lib
243         -cp -rp $(GccDir)../lib/gcc/mingw32/$(GccVersion)/* $(prefix)/gcc-lib
244         -cp -rp $(GccDir)../libexec/gcc/mingw32/$(GccVersion)/* $(prefix)/gcc-lib
245         -cp $(GccDir)../lib/*.* $(prefix)/gcc-lib
246         -cp $(GccDir)gcc.exe $(prefix)
247         -cp $(GccDir)as.exe $(prefix)/gcc-lib
248         -cp $(GccDir)ld.exe $(prefix)/gcc-lib
249         -cp $(GccDir)dllwrap.exe $(prefix)/gcc-lib
250         -cp $(GccDir)dlltool.exe $(prefix)/gcc-lib
251         -cp $(GhcDir)../perl.exe $(prefix)
252         -cp $(GhcDir)../perl56.dll $(prefix)
253 endif
254 endif
255
256 # Install gcc-extra-opts
257 install ::
258         $(INSTALL_DIR) $(DESTDIR)$(libdir)
259         $(INSTALL_DATA) $(INSTALL_OPTS) extra-gcc-opts $(DESTDIR)$(libdir)
260
261 install-docs ::
262         @case '${MFLAGS}' in *-[ik]*) x_on_err=0;; *-r*[ik]*) x_on_err=0;; *) x_on_err=1;; esac; \
263         for i in $(SUBDIRS); do \
264           echo "------------------------------------------------------------------------"; \
265           echo "== $(MAKE) $@ $(MFLAGS);"; \
266           echo " in $(shell pwd)/$$i"; \
267           echo "------------------------------------------------------------------------"; \
268           $(MAKE) --no-print-directory -C $$i $(INSTALL_STAGE) $(MFLAGS) $@; \
269           if [ $$? -eq 0 -o $$x_on_err -eq 0 ] ;  then true; else exit 1; fi; \
270         done
271
272 # -----------------------------------------------------------------------------
273 # Making a binary distribution
274 #
275 # `dist' `binary-dist'
276 #      Create a distribution tar file for this program. The tar file
277 #      should be set up so that the file names in the tar file start with
278 #      a subdirectory name which is the name of the package it is a
279 #      distribution for. This name can include the version number.
280 #
281 #      For example, the distribution tar file of GCC version 1.40 unpacks
282 #      into a subdirectory named `gcc-1.40'.
283
284 #      The easiest way to do this is to create a subdirectory
285 #      appropriately named, use ln or cp to install the proper files in
286 #      it, and then tar that subdirectory.
287
288 #      The dist target should explicitly depend on all non-source files
289 #      that are in the distribution, to make sure they are up to date in
290 #      the distribution. See Making Releases.
291 #
292 #       binary-dist is a GHC addition for binary distributions
293
294
295 binary-dist::
296         -rm -rf $(BIN_DIST_DIR)
297         -$(RM) $(BIN_DIST_TAR_BZ2)
298
299 ifeq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
300
301 binary-dist::
302         $(MAKE) prefix=$(BIN_DIST_DIR) install
303         $(MAKE) prefix=$(BIN_DIST_DIR) install-docs
304
305 binary-dist::
306         cd $(BIN_DIST_DIR) && $(SHELL) ../distrib/prep-bin-dist-mingw
307
308 binary-dist::
309         $(MKDIRHIER) $(BIN_DIST_DIR)/icons
310         cp distrib/hsicon.ico $(BIN_DIST_DIR)/icons
311
312 # Tar up the distribution and build a manifest
313 binary-dist :: tar-binary-dist
314
315 .PHONY: tar-binary-dist
316 tar-binary-dist:
317         ( cd $(BIN_DIST_TOPDIR_ABS); $(TAR) cf - $(BIN_DIST_NAME) | bzip2 > $(BIN_DIST_TAR_BZ2) )
318         ( cd $(BIN_DIST_TOPDIR_ABS); bunzip2 -c $(BIN_DIST_TAR_BZ2) | $(TAR) tf - | sed "s/^ghc-$(ProjectVersion)/fptools/" | sort >$(FPTOOLS_TOP_ABS)/bin-manifest-$(ProjectVersion) )
319
320 else
321
322 .PHONY: binary-dist
323
324 BIN_DIST_VARFILE=$(BIN_DIST_PREP)/Makefile-vars.in
325
326 WHERE_AM_I = $(BIN_DIST_NAME)
327
328 binary-dist::
329 # For the most part we will be putting filenames in $(BIN_DIST_LIST),
330 # and telling tar to tar all of those files up. So to start with we
331 # remove $(BIN_DIST_LIST) so that we can start with an empty slate
332         $(RM) -f $(BIN_DIST_LIST)
333 # Now we add a few files from mk/ to $(BIN_DIST_LIST)
334         echo $(WHERE_AM_I)/mk/package.mk     >> $(BIN_DIST_LIST)
335         echo $(WHERE_AM_I)/mk/install.mk     >> $(BIN_DIST_LIST)
336         echo $(WHERE_AM_I)/mk/recurse.mk     >> $(BIN_DIST_LIST)
337         echo $(WHERE_AM_I)/mk/cabal.mk       >> $(BIN_DIST_LIST)
338         echo $(WHERE_AM_I)/mk/cabal-flags.mk >> $(BIN_DIST_LIST)
339         echo $(WHERE_AM_I)/mk/fptools.css    >> $(BIN_DIST_LIST)
340         echo $(WHERE_AM_I)/ANNOUNCE          >> $(BIN_DIST_LIST)
341         echo $(WHERE_AM_I)/LICENSE           >> $(BIN_DIST_LIST)
342         echo $(WHERE_AM_I)/install-sh        >> $(BIN_DIST_LIST)
343         echo $(WHERE_AM_I)/extra-gcc-opts.in >> $(BIN_DIST_LIST)
344         echo $(WHERE_AM_I)/config.guess      >> $(BIN_DIST_LIST)
345         echo $(WHERE_AM_I)/config.sub        >> $(BIN_DIST_LIST)
346 # Now we recurse into various subdirectories and tell them to add and
347 # files that they want into $(BIN_DIST_LIST)
348 # XXX Ug, this duplication of "-C foo WHERE_AM_I=.../foo" isn't nice.
349         $(MAKE) -C gmp                 binary-dist WHERE_AM_I=$(WHERE_AM_I)/gmp
350         $(MAKE) -C includes            binary-dist WHERE_AM_I=$(WHERE_AM_I)/includes
351         $(MAKE) -C compiler            binary-dist WHERE_AM_I=$(WHERE_AM_I)/compiler $(INSTALL_STAGE)
352         $(MAKE) -C ghc                 binary-dist WHERE_AM_I=$(WHERE_AM_I)/ghc      $(INSTALL_STAGE)
353         $(MAKE) -C rts                 binary-dist WHERE_AM_I=$(WHERE_AM_I)/rts
354         $(MAKE) -C driver              binary-dist WHERE_AM_I=$(WHERE_AM_I)/driver
355         $(MAKE) -C utils               binary-dist WHERE_AM_I=$(WHERE_AM_I)/utils
356         $(MAKE) -C docs                binary-dist WHERE_AM_I=$(WHERE_AM_I)/docs
357         $(MAKE) -C libffi              binary-dist WHERE_AM_I=$(WHERE_AM_I)/libffi
358         $(MAKE) -C libraries           binary-dist WHERE_AM_I=$(WHERE_AM_I)/libraries
359         $(MAKE) -C libraries/Cabal/doc binary-dist WHERE_AM_I=$(WHERE_AM_I)/libraries/Cabal/doc
360 # Now thinks get messier. Some files we need to move around, rename or
361 # generate. We do this under $(BIN_DIST_PREP).
362         $(RM) -rf    $(BIN_DIST_PREP_DIR)
363         $(MKDIRHIER) $(BIN_DIST_PREP)/mk
364         echo 'include $$(TOP)/Makefile-vars' >  $(BIN_DIST_PREP)/mk/boilerplate.mk
365         echo 'include $$(TOP)/mk/package.mk' >  $(BIN_DIST_PREP)/mk/target.mk
366         echo 'include $$(TOP)/mk/install.mk' >> $(BIN_DIST_PREP)/mk/target.mk
367         echo 'include $$(TOP)/mk/recurse.mk' >> $(BIN_DIST_PREP)/mk/target.mk
368         touch                                   $(BIN_DIST_PREP)/mk/bindist.mk
369 ifeq "$(darwin_TARGET_OS)" "1"
370         cp mk/fix_install_names.sh $(BIN_DIST_PREP)/mk
371 endif
372
373         cp distrib/Makefile         $(BIN_DIST_PREP)
374         cp distrib/INSTALL          $(BIN_DIST_PREP)
375         cp distrib/README           $(BIN_DIST_PREP)
376         cp distrib/configure-bin.ac $(BIN_DIST_PREP)/configure.ac
377 # We can't just list aclocal.m4 in $(BIN_DIST_LIST), as it needs to be
378 # next to configure.ac when we run autoreconf
379         cp aclocal.m4               $(BIN_DIST_PREP)
380         cd $(BIN_DIST_PREP) && autoreconf
381 # We need to copy the pwd program that was built with stage1 to where
382 # the build system expects to find it, i.e. the location the pwd built
383 # with the bootstrapping compiler normally occupies
384         $(MKDIRHIER) $(BIN_DIST_PREP)/utils/pwd
385         cp utils/pwd/dist-install/build/pwd/pwd $(BIN_DIST_PREP)/utils/pwd
386 # And likewise the installPackage program
387         $(MKDIRHIER) $(BIN_DIST_PREP)/utils/installPackage/install-inplace/bin
388         cp utils/installPackage/dist-install/build/installPackage/installPackage \
389            $(BIN_DIST_PREP)/utils/installPackage/install-inplace/bin
390
391         echo "package = ghc"                              >> $(BIN_DIST_VARFILE)
392         echo "version = $(ProjectVersion)"                >> $(BIN_DIST_VARFILE)
393         echo "ProjectVersion = $(ProjectVersion)"         >> $(BIN_DIST_VARFILE)
394         echo "HaveLibGmp = $(HaveLibGmp)"                 >> $(BIN_DIST_VARFILE)
395         echo "GhcLibsWithUnix = $(GhcLibsWithUnix)"       >> $(BIN_DIST_VARFILE)
396         echo "GhcWithInterpreter = $(GhcWithInterpreter)" >> $(BIN_DIST_VARFILE)
397         echo "GhcHasEditline = $(GhcHasEditline)"         >> $(BIN_DIST_VARFILE)
398         echo "BootingFromHc = $(BootingFromHc)"           >> $(BIN_DIST_VARFILE)
399         echo "XMLDocWays = $(XMLDocWays)"                 >> $(BIN_DIST_VARFILE)
400 # We won't actually use xsltproc, but we need to know if it's "" or not
401         echo "XSLTPROC = $(XSLTPROC)"                     >> $(BIN_DIST_VARFILE)
402         echo "TARGETPLATFORM = $(TARGETPLATFORM)"         >> $(BIN_DIST_VARFILE)
403         echo "HADDOCK_DOCS = $(HADDOCK_DOCS)"             >> $(BIN_DIST_VARFILE)
404         echo "LATEX_DOCS = $(LATEX_DOCS)"                 >> $(BIN_DIST_VARFILE)
405         echo "INTEGER_LIBRARY = $(INTEGER_LIBRARY)"       >> $(BIN_DIST_VARFILE)
406         cat distrib/Makefile-bin-vars.in                  >> $(BIN_DIST_VARFILE)
407
408 # With that done, we can now build the actual tarball
409
410         $(RM) -f $(BIN_DIST_NAME)
411         ln -s . $(BIN_DIST_NAME)
412 # h means "follow symlinks", e.g. if aclocal.m4 is a symlink to a source
413 # tree then we want to include the real file, not a symlink to it
414         $(TAR) hcf $(BIN_DIST_TAR) -T $(BIN_DIST_LIST)
415         cd $(BIN_DIST_PREP_DIR) && $(TAR) rf $(BIN_DIST_TAR) $(BIN_DIST_NAME)
416         bzip2 < $(BIN_DIST_TAR) > $(BIN_DIST_TAR_BZ2)
417         $(TAR) tf $(BIN_DIST_TAR) | sort > bin-manifest-$(ProjectVersion)
418 endif
419
420 PUBLISH_FILES = $(BIN_DIST_TAR_BZ2)
421
422 # Upload the distribution and documentation
423 ifneq "$(ISCC)" ""
424 WINDOWS_INSTALLER_BASE = ghc-$(ProjectVersion)-$(TARGETPLATFORM)
425 WINDOWS_INSTALLER = $(WINDOWS_INSTALLER_BASE)$(exeext)
426
427 PUBLISH_FILES += $(WINDOWS_INSTALLER)
428
429 binary-dist :: generate-windows-installer
430
431 .PHONY: generate-windows-installer
432 generate-windows-installer ::
433         $(SED) "s/@VERSION@/$(ProjectVersion)/" distrib/ghc.iss | $(ISCC) /O. /F$(WINDOWS_INSTALLER_BASE) -
434 endif
435
436 # Upload the distribution and documentation
437 ifneq "$(PublishLocation)" ""
438 publish ::
439         make publish-binary-dist 'prefix=$(BIN_DIST_INST_DIR)'
440 endif
441
442 nTimes = set -e; for i in `seq 1 $(1)`; do echo Try "$$i: $(2)"; if $(2); then break; fi; done
443
444 .PHONY: publish-binary-dist
445 publish-binary-dist ::
446         @for f in $(PUBLISH_FILES); \
447             do $(call nTimes,10,$(PublishCp) $$f $(PublishLocation)/dist); \
448         done
449
450 # You need to "make binddisttest" before publishing the docs, as it
451 # works by publish setting $(prefix) to inside the binddisttest
452 # directory so $(docdir) points to the right place.
453
454 # We assume that Windows means Cygwin, as we can't just use docdir
455 # unchanged or rsync (really SSH?) thinks that c:/foo means /foo on
456 # the machine c.
457
458 ifeq "$(Windows)" "YES"
459 PUBLISH_DOCDIR = $(shell cygpath --unix $(docdir))
460 else
461 PUBLISH_DOCDIR = $(docdir)
462 endif
463
464 publish-binary-dist ::
465         $(call nTimes,10,$(PublishCp) -r "$(PUBLISH_DOCDIR)"/* $(PublishLocation)/docs)
466
467 binary-dist::
468         @echo "Mechanical and super-natty! Inspect the result and *if* happy; freeze, sell and get some sleep!"
469
470 # -----------------------------------------------------------------------------
471 # Building MacOS installer packages
472 #
473 # 'framework-pkg'
474 #       Create an installer package for /Library/Frameworks/GHC.framework
475 #
476 # 'framework-binary-dist'
477 #       Create an installer package for GHC.framework encapsulating a
478 #       binary-dist to make it relocatable
479 #       FIXME: This is only partially implemented so far
480
481 ifeq "$(darwin_TARGET_OS)" "1"
482
483 .PHONY: framework-pkg framework-binary-dist
484
485 framework-pkg:
486         $(MAKE) -C distrib/MacOS framework-pkg
487
488 framework-binary-dist:
489         $(MAKE) -C distrib/MacOS framework-binary-dist
490
491 endif
492
493 # -----------------------------------------------------------------------------
494 # Building source distributions
495 #
496 # Do it like this: 
497 #
498 #       $ make
499 #       $ make dist
500 #
501 # WARNING: `make dist' calls `make distclean' before tarring up the tree.
502 #
503
504 .PHONY: dist
505
506 #
507 # Directory in which we're going to build the src dist
508 #
509 SRC_DIST_NAME=ghc-$(ProjectVersion)
510 SRC_DIST_DIR=$(shell pwd)/$(SRC_DIST_NAME)
511
512 #
513 # Files to include in source distributions
514 #
515 SRC_DIST_DIRS += mk docs distrib bindisttest $(filter-out docs distrib libraries/Cabal/doc,$(SUBDIRS))
516 SRC_DIST_FILES += \
517         configure.ac config.guess config.sub configure \
518         aclocal.m4 README ANNOUNCE HACKING LICENSE Makefile install-sh \
519         ghc.spec.in ghc.spec extra-gcc-opts.in VERSION boot
520
521 # -----------------------------------------------------------------------------
522 # Source distributions
523
524 # A source dist is built from a complete build tree, because we
525 # require some extra files not contained in a darcs checkout: the
526 # output from Happy and Alex, for example.
527
528 # The steps performed by 'make dist' are as follows:
529 #   - create a complete link-tree of the current build tree in /tmp
530 #   - run 'make distclean' on that tree
531 #   - remove a bunch of other files that we know shouldn't be in the dist
532 #   - tar up first the extralibs package, then the main source package
533
534 EXTRA_LIBS=$(patsubst %, $(SRC_DIST_NAME)/%, $(shell grep -E "extralibs|dph" packages | grep -v "^\#" | sed "s/ .*//"))
535
536 SRC_DIST_TARBALL = ghc-$(ProjectVersion)-src.tar.bz2
537 SRC_DIST_EXTRALIBS_TARBALL = ghc-$(ProjectVersion)-src-extralibs.tar.bz2
538
539 VERSION :
540         echo $(ProjectVersion) >VERSION
541
542 dist :: VERSION
543
544 # Use:
545 #     $(call copy_generated_compiler_file,cmm,CmmLex,x)
546 # to copy the generated file that replaces compiler/cmm/CmmLex.x
547 # XXX Should this be unconditional? Do we want to support making a src dist
548 # from an unbuilt tree?
549 copy_generated_compiler_file = \
550   if test -f $(FPTOOLS_TOP_ABS)/compiler/dist-stage2/build/$2.hs; \
551   then \
552     $(CP) $(FPTOOLS_TOP_ABS)/compiler/dist-stage2/build/$2.hs compiler/$1/ ; \
553     mv compiler/$1/$2.$3 compiler/$1/$2.$3.source ; \
554   fi
555 copy_generated_util_file = \
556   if test -f $(FPTOOLS_TOP_ABS)/utils/$1/dist-install/build/$1/$1-tmp/$2.hs; \
557   then \
558     $(CP) $(FPTOOLS_TOP_ABS)/utils/$1/dist-install/build/$1/$1-tmp/$2.hs utils/$1/ ; \
559     mv utils/$1/$2.$3 utils/$1/$2.$3.source ; \
560   fi
561
562 dist ::
563         $(RM) -rf $(SRC_DIST_DIR)
564         $(RM) $(SRC_DIST_NAME).tar.gz
565         mkdir $(SRC_DIST_DIR)
566         ( cd $(SRC_DIST_DIR) \
567           && for i in $(SRC_DIST_DIRS); do mkdir $$i; (cd $$i && lndir $(FPTOOLS_TOP_ABS)/$$i ); done \
568           && for i in $(SRC_DIST_FILES); do $(LN_S) $(FPTOOLS_TOP_ABS)/$$i .; done \
569           && $(MAKE) distclean \
570           && if test -f $(FPTOOLS_TOP_ABS)/libraries/haskell-src/dist/build/Language/Haskell/Parser.hs; then $(CP) $(FPTOOLS_TOP_ABS)/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 \
571           && $(call copy_generated_compiler_file,cmm,CmmLex,x) \
572           && $(call copy_generated_compiler_file,cmm,CmmParse,y) \
573           && $(call copy_generated_compiler_file,main,ParsePkgConf,y) \
574           && $(call copy_generated_compiler_file,parser,HaddockLex,x) \
575           && $(call copy_generated_compiler_file,parser,HaddockParse,y) \
576           && $(call copy_generated_compiler_file,parser,Lexer,x) \
577           && $(call copy_generated_compiler_file,parser,Parser,y.pp) \
578           && $(call copy_generated_compiler_file,parser,ParserCore,y) \
579           && $(call copy_generated_util_file,hpc,HpcParser,y) \
580           && $(RM) -rf compiler/stage[123] mk/build.mk \
581           && $(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" \) -print | xargs $(RM) -rf \
582         )
583         $(TAR) chf - $(EXTRA_LIBS) | bzip2 >$(FPTOOLS_TOP_ABS)/$(SRC_DIST_EXTRALIBS_TARBALL)
584         $(RM) -rf $(EXTRA_LIBS)
585         $(TAR) chf - $(SRC_DIST_NAME) 2>$src_log | bzip2 >$(FPTOOLS_TOP_ABS)/$(SRC_DIST_TARBALL)
586
587 # Upload the distribution(s)
588 # Retrying is to work around buggy firewalls that corrupt large file transfers
589 # over SSH.
590 ifneq "$(PublishLocation)" ""
591 dist ::
592         @for i in 0 1 2 3 4 5 6 7 8 9; do \
593                 echo "Try $$i: $(PublishCp) $(SRC_DIST_EXTRALIBS_TARBALL) $(PublishLocation)/dist"; \
594                 if $(PublishCp) $(SRC_DIST_EXTRALIBS_TARBALL) $(PublishLocation)/dist; then break; fi; \
595         done
596         @for i in 0 1 2 3 4 5 6 7 8 9; do \
597                 echo "Try $$i: $(PublishCp) $(SRC_DIST_TARBALL) $(PublishLocation)/dist"; \
598                 if $(PublishCp) $(SRC_DIST_TARBALL) $(PublishLocation)/dist; then break; fi; \
599         done
600 endif
601
602 # -----------------------------------------------------------------------------
603 # HC file bundles
604
605 hc-file-bundle :
606         $(RM) -r ghc-$(ProjectVersion)
607         $(LN_S) . ghc-$(ProjectVersion)
608         $(FIND) ghc-$(ProjectVersion)/compiler \
609              ghc-$(ProjectVersion)/utils \
610              ghc-$(ProjectVersion)/libraries -follow \
611           \( -name "*.hc" -o -name "*_hsc.[ch]" -o -name "*_stub.[ch]" \) -print > hc-files-to-go
612         for f in `$(FIND) ghc-$(ProjectVersion)/compiler ghc-$(ProjectVersion)/utils ghc-$(ProjectVersion)/libraries -name "*.hsc" -follow -print` ""; do \
613              if test "x$$f" != "x" && test -f `echo "$$f" | sed 's/hsc$$/hs/g'`; then \
614                 echo `echo "$$f" | sed 's/hsc$$/hs/g' ` >> hc-files-to-go ; \
615              fi; \
616         done;
617         for f in `$(FIND) ghc-$(ProjectVersion)/compiler ghc-$(ProjectVersion)/rts -name "*.cmm" -follow -print` ""; do \
618              if test "x$$f" != "x"; then \
619                 echo `echo "$$f" | sed 's/cmm$$/hc/g' ` >> hc-files-to-go ; \
620              fi; \
621         done;
622         echo ghc-$(ProjectVersion)/libraries/base/GHC/PrimopWrappers.hs >> hc-files-to-go
623         echo ghc-$(ProjectVersion)/compiler/parser/Parser.hs >> hc-files-to-go
624         echo ghc-$(ProjectVersion)/compiler/parser/ParserCore.hs >> hc-files-to-go
625         echo ghc-$(ProjectVersion)/compiler/main/ParsePkgConf.hs >> hc-files-to-go
626         echo ghc-$(ProjectVersion)/libraries/haskell-src/Language/Haskell/Parser.hs >> hc-files-to-go
627         $(TAR) czf ghc-$(ProjectVersion)-$(TARGETPLATFORM)-hc.tar.gz `cat hc-files-to-go`
628
629 # -----------------------------------------------------------------------------
630 # Cleaning
631
632 CLEAN_FILES += hc-files-to-go *-hc.tar.gz
633
634 DIST_CLEAN_FILES += config.cache config.status mk/config.h mk/stamp-h \
635         docs/users_guide/ug-book.xml extra-gcc-opts
636
637 # don't clean config.mk: it's needed when cleaning stuff later on
638 LATE_DIST_CLEAN_FILES += mk/config.mk mk/are-validating.mk
639
640 # VERSION is shipped in a source dist
641 MAINTAINER_CLEAN_FILES += VERSION
642
643 extraclean::
644         $(RM) -rf autom4te.cache
645
646 clean distclean ::
647         $(RM) -rf inplace-datadir
648
649 clean distclean ::
650         $(MAKE) -C bindisttest $@
651         if test -d testsuite; then $(MAKE) -C testsuite $@; fi
652
653 # -----------------------------------------------------------------------------
654
655 # Turn off target.mk's rules for 'all', 'boot' and 'install'.
656 NO_BOOT_TARGET=YES
657 NO_ALL_TARGET=YES
658 NO_INSTALL_TARGET=YES
659
660 include $(TOP)/mk/target.mk
661
662 # -----------------------------------------------------------------------------
663