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