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