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