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