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