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