Make boot handle getting the libraries
[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 #       hc-file-bundle
41 #               Builds an HC-file bundle, for bootstrapping
42 #
43 #       clean, distclean, maintainer-clean
44 #               Increasing levels of cleanliness
45 #
46 ############################################################################
47
48 TOP=.
49 include $(TOP)/mk/boilerplate.mk
50
51 #
52 # Order is important! It's e.g. necessary to descend into include/
53 # before the rest to have a config.h, etc.
54 #
55 # If we're booting from .hc files, swap the order
56 # we descend into subdirs - to boot utils must be before driver.
57 #
58 .PHONY: stage1 stage2 stage3 bootstrap bootstrap2 bootstrap3
59
60 # We can't 'make boot' in libraries until stage1 is built
61 ifeq "$(BootingFromHc)" "YES"
62 SUBDIRS_NOLIB = includes rts compat compiler docs utils driver
63 else
64 SUBDIRS_NOLIB = includes compat utils driver docs compiler rts
65 endif
66
67 SUBDIRS = $(SUBDIRS_NOLIB) libraries
68
69 # Sanity check that all the core libraries are in the tree, to catch
70 # failure to run darcs-all.
71 check-packages :
72         @for d in `cat libraries/core-packages`; do \
73           if test ! -d libraries/$$d; then \
74              echo "Looks like you're missing libraries/$$d,"; \
75              echo "maybe you haven't done './darcs-all get'?"; \
76              exit 1; \
77           fi \
78         done
79         @if test ! -e libraries/base/configure; then \
80             echo "Looks like you're missing base's configure script."; \
81             echo "Did you run 'sh boot' at the top level?"; \
82             exit 1; \
83         fi
84
85 stage1 : check-packages
86         $(MAKE) -C utils/mkdependC boot
87         @case '${MFLAGS}' in *-[ik]*) x_on_err=0;; *-r*[ik]*) x_on_err=0;; *) x_on_err=1;; esac; \
88         for i in $(SUBDIRS_NOLIB); do \
89           echo "------------------------------------------------------------------------"; \
90           echo "== $(MAKE) boot $(MFLAGS);"; \
91           echo " in $(shell pwd)/$$i"; \
92           echo "------------------------------------------------------------------------"; \
93           $(MAKE) --no-print-directory -C $$i $(MFLAGS) boot; \
94           if [ $$? -eq 0 -o $$x_on_err -eq 0 ] ;  then true; else exit 1; fi; \
95         done; \
96         for i in $(SUBDIRS_NOLIB); do \
97           echo "------------------------------------------------------------------------"; \
98           echo "== $(MAKE) all $(MFLAGS);"; \
99           echo " in $(shell pwd)/$$i"; \
100           echo "------------------------------------------------------------------------"; \
101           $(MAKE) --no-print-directory -C $$i $(MFLAGS) all; \
102           if [ $$? -eq 0 -o $$x_on_err -eq 0 ] ;  then true; else exit 1; fi; \
103         done
104         $(MAKE) -C libraries boot
105         $(MAKE) -C libraries all
106
107 stage2 : check-packages
108         $(MAKE) -C compiler boot stage=2
109         $(MAKE) -C compiler stage=2
110
111 stage3 : check-packages
112         $(MAKE) -C compiler boot stage=3
113         $(MAKE) -C compiler stage=3
114
115 bootstrap  : bootstrap2
116
117 bootstrap2 : stage1
118         $(MAKE) stage2
119
120 bootstrap3 : bootstrap2
121         $(MAKE) stage3
122
123 all :: bootstrap
124
125 # -----------------------------------------------------------------------------
126 # Installing
127
128 # We want to install the stage 2 bootstrapped compiler by default, but we let
129 # the user override this by saying 'make install stage=1', for example.
130 ifeq "$(stage)" ""
131 INSTALL_STAGE = stage=2
132 else
133 INSTALL_STAGE =
134 endif
135
136 # Same as default rule, but we pass $(INSTALL_STAGE) to $(MAKE) too
137 install :: check-packages
138         @case '${MFLAGS}' in *-[ik]*) x_on_err=0;; *-r*[ik]*) x_on_err=0;; *) x_on_err=1;; esac; \
139         for i in $(SUBDIRS); do \
140           echo "------------------------------------------------------------------------"; \
141           echo "== $(MAKE) $@ $(MFLAGS);"; \
142           echo " in $(shell pwd)/$$i"; \
143           echo "------------------------------------------------------------------------"; \
144           $(MAKE) --no-print-directory -C $$i $(INSTALL_STAGE) $(MFLAGS) $@; \
145           if [ $$? -eq 0 -o $$x_on_err -eq 0 ] ;  then true; else exit 1; fi; \
146         done
147
148 ifeq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
149 # These files need to be in the InstallShield
150 # INSTALL_DATAS rather than INSTALL_DOCS is used so these files go
151 # in the top-level directory of the distribution
152 INSTALL_DATAS += ANNOUNCE LICENSE README
153 endif
154
155 # If installing on Windows with MinGW32, copy the gcc compiler, headers and libs
156 # and the perl interpreter and dll into the GHC prefix directory.
157 # Gcc and Perl source locations derived from configuration data.
158 ifeq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
159 ifneq "$(WhatGccIsCalled)" ""
160 install ::
161         -mkdir $(prefix)/gcc-lib
162         -mkdir $(prefix)/include
163         -mkdir $(prefix)/include/mingw
164         -cp -rp $(GccDir)../include/* $(prefix)/include/mingw
165         -cp -rp $(GccDir)../lib/gcc-lib/mingw32/$(GccVersion)/* $(prefix)/gcc-lib
166         -cp -rp $(GccDir)../lib/gcc/mingw32/$(GccVersion)/* $(prefix)/gcc-lib
167         -cp -rp $(GccDir)../libexec/gcc/mingw32/$(GccVersion)/* $(prefix)/gcc-lib
168         -cp $(GccDir)../lib/*.* $(prefix)/gcc-lib
169         -cp $(GccDir)gcc.exe $(prefix)
170         -cp $(GccDir)as.exe $(prefix)/gcc-lib
171         -cp $(GccDir)ld.exe $(prefix)/gcc-lib
172         -cp $(GccDir)dllwrap.exe $(prefix)/gcc-lib
173         -cp $(GccDir)dlltool.exe $(prefix)/gcc-lib
174         -cp $(GhcDir)../perl.exe $(prefix)
175         -cp $(GhcDir)../perl56.dll $(prefix)
176 endif
177 endif
178
179 install-docs ::
180         @case '${MFLAGS}' in *-[ik]*) x_on_err=0;; *-r*[ik]*) x_on_err=0;; *) x_on_err=1;; esac; \
181         for i in $(SUBDIRS); do \
182           echo "------------------------------------------------------------------------"; \
183           echo "== $(MAKE) $@ $(MFLAGS);"; \
184           echo " in $(shell pwd)/$$i"; \
185           echo "------------------------------------------------------------------------"; \
186           $(MAKE) --no-print-directory -C $$i $(INSTALL_STAGE) $(MFLAGS) $@; \
187           if [ $$? -eq 0 -o $$x_on_err -eq 0 ] ;  then true; else exit 1; fi; \
188         done
189
190 # -----------------------------------------------------------------------------
191 # Making a binary distribution
192 #
193 # `dist' `binary-dist'
194 #      Create a distribution tar file for this program. The tar file
195 #      should be set up so that the file names in the tar file start with
196 #      a subdirectory name which is the name of the package it is a
197 #      distribution for. This name can include the version number.
198 #
199 #      For example, the distribution tar file of GCC version 1.40 unpacks
200 #      into a subdirectory named `gcc-1.40'.
201
202 #      The easiest way to do this is to create a subdirectory
203 #      appropriately named, use ln or cp to install the proper files in
204 #      it, and then tar that subdirectory.
205
206 #      The dist target should explicitly depend on all non-source files
207 #      that are in the distribution, to make sure they are up to date in
208 #      the distribution. See Making Releases.
209 #
210 #       binary-dist is a GHC addition for binary distributions
211
212
213 ifneq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
214 BinDistShScripts = ghc-$(ProjectVersion) ghci-$(ProjectVersion) ghc-pkg-$(ProjectVersion) hsc2hs-ghc
215 else
216 BinDistShScripts =
217 endif
218
219 BinDistPrlScripts = ghcprof
220 BinDistLibPrlScripts = ghc-asm ghc-split
221 BinDistBins = hp2ps runghc
222 BinDistLinks = ghc ghci ghc-pkg
223 BinDistLibSplicedFiles = package.conf
224 BinDistDirs = includes compiler docs driver rts utils
225
226 BIN_DIST_NAME=ghc-$(ProjectVersion)
227 BIN_DIST_TOPDIR=$(FPTOOLS_TOP_ABS)
228 BIN_DIST_DIR=$(BIN_DIST_TOPDIR)/$(BIN_DIST_NAME)
229
230 BIN_DIST_TARBALL=ghc-$(ProjectVersion)-$(TARGETPLATFORM).tar.bz2
231
232 BIN_DIST_TOP= distrib/Makefile \
233               distrib/configure-bin.ac \
234               distrib/INSTALL \
235               distrib/README \
236               ANNOUNCE \
237               LICENSE \
238               utils/mkdirhier/mkdirhier \
239               install-sh \
240               config.guess \
241               config.sub   \
242               aclocal.m4
243
244 ifeq "$(darwin_TARGET_OS)" "1"
245 BIN_DIST_TOP+=mk/fix_install_names.sh
246 endif
247
248 .PHONY: binary-dist-pre% binary-dist binary-pack
249
250 BINARY_DIST_PRE_RULES=$(foreach d,$(BinDistDirs),binary-dist-pre-$d)
251
252 binary-dist:: binary-dist-pre $(BINARY_DIST_PRE_RULES)
253
254 binary-dist-pre::
255 ifeq "$(BIN_DIST)" ""
256         @echo "WARNING: To run the binary-dist target, you need to set BIN_DIST=1 in mk/build.mk"
257         @false
258 endif
259         -rm -rf $(BIN_DIST_DIR)
260         -$(RM) $(BIN_DIST_DIR).tar.gz
261         $(MKDIRHIER) $(BIN_DIST_DIR)/bin/$(TARGETPLATFORM)
262         $(MKDIRHIER) $(BIN_DIST_DIR)/lib/$(TARGETPLATFORM)
263         $(MKDIRHIER) $(BIN_DIST_DIR)/share
264
265 $(BINARY_DIST_PRE_RULES): binary-dist-pre-%:
266         $(MAKE) -C $* $(MFLAGS) $(INSTALL_STAGE) install \
267                 prefix=$(BIN_DIST_DIR) \
268                 exec_prefix=$(BIN_DIST_DIR) \
269                 bindir=$(BIN_DIST_DIR)/bin/$(TARGETPLATFORM) \
270                 libdir=$(BIN_DIST_DIR)/lib/$(TARGETPLATFORM) \
271                 libexecdir=$(BIN_DIST_DIR)/lib/$(TARGETPLATFORM) \
272                 datadir=$(BIN_DIST_DIR)/share
273
274 VARFILE=$(BIN_DIST_DIR)/Makefile-vars.in
275
276 binary-dist::
277         @for i in $(BIN_DIST_TOP); do \
278           if test -f "$$i"; then \
279              echo cp $$i $(BIN_DIST_DIR); \
280              cp $$i $(BIN_DIST_DIR); \
281           fi; \
282         done;
283         @echo "Configuring the Makefile for this project..."
284         echo                                                         >  $(VARFILE)
285         echo "package = ghc"                                         >> $(VARFILE)
286         echo "version = $(ProjectVersion)"                           >> $(VARFILE)
287         echo "PACKAGE_SH_SCRIPTS = $(BinDistShScripts)"              >> $(VARFILE)
288         echo "PACKAGE_PRL_SCRIPTS = $(BinDistPrlScripts)"            >> $(VARFILE)
289         echo "PACKAGE_LIB_PRL_SCRIPTS = $(BinDistLibPrlScripts)"     >> $(VARFILE)
290         echo "PACKAGE_LIB_SPLICED_FILES = $(BinDistLibSplicedFiles)" >> $(VARFILE)
291         echo "PACKAGE_BINS = $(BinDistBins)"                         >> $(VARFILE)
292         echo "PACKAGE_OPT_BINS = $(BinDistOptBins)"                  >> $(VARFILE)
293         echo "PACKAGE_LINKS = $(BinDistLinks)"                       >> $(VARFILE)
294         cat distrib/Makefile-bin-vars.in                             >> $(VARFILE)
295         @echo "Generating a shippable configure script.."
296         $(MV) $(BIN_DIST_DIR)/configure-bin.ac $(BIN_DIST_DIR)/configure.ac
297         ( cd $(BIN_DIST_DIR); autoconf )
298 #
299 # binary dist'ing the documentation.  
300 # The default documentation to build/install is given below; overrideable
301 # via build.mk or the 'make' command-line.
302
303 ifndef BINDIST_DOC_WAYS
304
305 BINDIST_DOC_WAYS = $(XMLDocWays)
306
307 # ifneq "$(XSLTPROC)" ""
308 # BINDIST_DOC_WAYS = html
309 # ifneq "$(FOP)" ""
310 # BINDIST_DOC_WAYS += ps pdf
311 # else
312 # ifneq "$(PDFXMLTEX)" ""
313 # BINDIST_DOC_WAYS += pdf
314 # endif
315 # ifneq "$(XMLTEX)" ""
316 # ifneq "$(DVIPS)" ""
317 # BINDIST_DOC_WAYS += ps
318 # endif # DVIPS
319 # endif # XMLTEX
320 # endif # FOP
321 # endif # XSLTPROC
322
323 endif # BINDIST_DOC_WAYS
324
325 ifneq "$(DIR_DOCBOOK_XSL)" ""
326 .PHONY: binary-dist-doc-%
327
328 BINARY_DIST_DOC_RULES=$(foreach d,$(BinDistDirs),binary-dist-doc-$d)
329
330 binary-dist :: $(BINARY_DIST_DOC_RULES)
331
332 $(BINARY_DIST_DOC_RULES): binary-dist-doc-%:
333         $(MAKE) -C $* $(MFLAGS) $(BINDIST_DOC_WAYS)
334         $(MAKE) -C $* $(MFLAGS) install-docs \
335                 XMLDocWays="$(BINDIST_DOC_WAYS)" \
336                 prefix=$(BIN_DIST_DIR) \
337                 exec_prefix=$(BIN_DIST_DIR) \
338                 bindir=$(BIN_DIST_DIR)/bin/$(TARGETPLATFORM) \
339                 libdir=$(BIN_DIST_DIR)/lib/$(TARGETPLATFORM) \
340                 libexecdir=$(BIN_DIST_DIR)/lib/$(TARGETPLATFORM) \
341                 datadir=$(BIN_DIST_DIR)/share
342 endif
343
344 # Rename scripts to $i.prl and $i.sh where necessary.
345 # ToDo: do this in a cleaner way...
346
347 ifneq "$(BinDistPrlScripts)" ""
348 binary-dist::
349         @for i in $(BinDistPrlScripts); do \
350              echo "Renaming $$i to $$i.prl"; \
351             $(MV) $(BIN_DIST_DIR)/bin/$(TARGETPLATFORM)/$$i  $(BIN_DIST_DIR)/bin/$(TARGETPLATFORM)/$$i.prl; \
352         done
353 endif
354
355 ifneq "$(BinDistLibPrlScripts)" ""
356 binary-dist::
357         @for i in $(BinDistLibPrlScripts); do \
358              echo "Renaming $$i to $$i.prl"; \
359             $(MV) $(BIN_DIST_DIR)/lib/$(TARGETPLATFORM)/$$i  $(BIN_DIST_DIR)/lib/$(TARGETPLATFORM)/$$i.prl; \
360         done
361 endif
362
363 ifneq "$(BinDistShScripts)" ""
364 binary-dist::
365         @for i in $(BinDistShScripts); do \
366             if test -x $(BIN_DIST_DIR)/bin/$(TARGETPLATFORM)/$$i ; then \
367                 echo "Renaming $$i to $$i.sh"; \
368                 $(MV) $(BIN_DIST_DIR)/bin/$(TARGETPLATFORM)/$$i  $(BIN_DIST_DIR)/bin/$(TARGETPLATFORM)/$$i.sh; \
369             fi \
370         done
371 endif
372
373 .PHONY: binary-dist-doc-%
374
375 BIN_DIST_LIBDIR=$(BIN_DIST_DIR)/libraries
376
377 LIBRARY_SUBDIRS=$(shell $(MAKE) -s -C libraries subdirs)
378
379 BINARY_DIST_LIBRARY_RULES=$(foreach d,$(LIBRARY_SUBDIRS),binary-dist-lib-$d)
380
381 binary-dist:: $(BINARY_DIST_LIBRARY_RULES)
382         cp    libraries/Makefile           $(BIN_DIST_LIBDIR)
383         cp    libraries/gen_contents_index $(BIN_DIST_LIBDIR)
384         cp    libraries/index.html         $(BIN_DIST_LIBDIR)
385         cp    libraries/doc-index.html     $(BIN_DIST_LIBDIR)
386         cp -a libraries/stamp              $(BIN_DIST_LIBDIR)
387
388 $(BINARY_DIST_LIBRARY_RULES): binary-dist-lib-%:
389         $(MKDIRHIER) $(BIN_DIST_LIBDIR)/$*/setup
390         cp    libraries/$*/setup/Setup   $(BIN_DIST_LIBDIR)/$*/setup
391         cp    libraries/$*/*.cabal       $(BIN_DIST_LIBDIR)/$*
392         cp -a libraries/$*/dist          $(BIN_DIST_LIBDIR)/$*
393         find $(BIN_DIST_LIBDIR)/$*/dist \
394              \( \( -name "*.o" -o -name "*.p_o" \) -a \! -name "HS*" \) \
395              -exec rm {} \;
396
397 # Jiggle the files around to make a valid Windows distribution if necessary
398 ifeq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
399 binary-dist :: fiddle-binary-dist
400 endif
401
402 .PHONY: fiddle-binary-dist
403 fiddle-binary-dist:
404         cd $(BIN_DIST_DIR) && ../distrib/prep-bin-dist-mingw
405 # Tar up the distribution and build a manifest
406 binary-dist :: tar-binary-dist
407
408 .PHONY: tar-binary-dist
409 tar-binary-dist:
410         ( cd $(BIN_DIST_TOPDIR); tar cf - $(BIN_DIST_NAME) | bzip2 >$(BIN_DIST_TARBALL) )
411         ( cd $(BIN_DIST_TOPDIR); bunzip2 -c $(BIN_DIST_TARBALL) | tar tf - | sed "s/^ghc-$(ProjectVersion)/fptools/" | sort >bin-manifest-$(ProjectVersion) )
412
413 # Upload the distribution and documentation
414 ifneq "$(PublishLocation)" ""
415 binary-dist :: publish-binary-dist
416 endif
417
418 .PHONY: publish-binary-dist
419 publish-binary-dist :
420         @for i in 0 1 2 3 4 5 6 7 8 9; do \
421                 echo "Try $$i: $(PublishCp) $(BIN_DIST_TARBALL) $(PublishLocation)"; \
422                 if $(PublishCp) $(BIN_DIST_TARBALL) $(PublishLocation); then break; fi\
423         done
424         $(PublishCp) -r $(BIN_DIST_DIR)/share/html/* $(PublishLocation)/docs
425
426
427 binary-dist::
428         @echo "Mechanical and super-natty! Inspect the result and *if* happy; freeze, sell and get some sleep!"
429
430 # -----------------------------------------------------------------------------
431 # Building source distributions
432 #
433 # Do it like this: 
434 #
435 #       $ make
436 #       $ make dist
437 #
438 # WARNING: `make dist' calls `make distclean' before tarring up the tree.
439 #
440
441 .PHONY: dist
442
443 #
444 # Directory in which we're going to build the src dist
445 #
446 SRC_DIST_NAME=ghc-$(ProjectVersion)
447 SRC_DIST_DIR=$(shell pwd)/$(SRC_DIST_NAME)
448
449 #
450 # Files to include in source distributions
451 #
452 SRC_DIST_DIRS += mk docs distrib $(filter-out docs distrib,$(SUBDIRS))
453 SRC_DIST_FILES += \
454         configure.ac config.guess config.sub configure \
455         aclocal.m4 README ANNOUNCE HACKING LICENSE Makefile install-sh \
456         ghc.spec.in VERSION
457
458 # -----------------------------------------------------------------------------
459 # Source distributions
460
461 # A source dist is built from a complete build tree, because we
462 # require some extra files not contained in a darcs checkout: the
463 # output from Happy and Alex, for example.
464
465 # The steps performed by 'make dist' are as follows:
466 #   - create a complete link-tree of the current build tree in /tmp
467 #   - run 'make distclean' on that tree
468 #   - remove a bunch of other files that we know shouldn't be in the dist
469 #   - tar up first the extralibs package, then the main source package
470
471 EXTRA_LIBS=$(patsubst %, $(SRC_DIST_NAME)/libraries/%, $(shell cat libraries/extra-packages))
472
473 SRC_DIST_TARBALL = ghc-$(ProjectVersion)-src.tar.bz2
474 SRC_DIST_EXTRALIBS_TARBALL = ghc-$(ProjectVersion)-src-extralibs.tar.bz2
475
476 VERSION :
477         echo $(ProjectVersion) >VERSION
478
479 dist :: VERSION
480
481 dist ::
482         $(RM) -rf $(SRC_DIST_DIR)
483         $(RM) $(SRC_DIST_NAME).tar.gz
484         mkdir $(SRC_DIST_DIR)
485         ( cd $(SRC_DIST_DIR) \
486           && for i in $(SRC_DIST_DIRS); do mkdir $$i; (cd $$i && lndir $(FPTOOLS_TOP_ABS)/$$i ); done \
487           && for i in $(SRC_DIST_FILES); do $(LN_S) $(FPTOOLS_TOP_ABS)/$$i .; done \
488           && $(MAKE) distclean \
489           && $(RM) -rf compiler/stage[123] mk/build.mk \
490           && $(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 \
491         )
492         tar chf - $(EXTRA_LIBS) | bzip2 >$(FPTOOLS_TOP_ABS)/$(SRC_DIST_EXTRALIBS_TARBALL)
493         $(RM) -rf $(EXTRA_LIBS)
494         tar chf - $(SRC_DIST_NAME) 2>$src_log | bzip2 >$(FPTOOLS_TOP_ABS)/$(SRC_DIST_TARBALL)
495
496 # Upload the distribution(s)
497 # Retrying is to work around buggy firewalls that corrupt large file transfers
498 # over SSH.
499 ifneq "$(PublishLocation)" ""
500 dist ::
501         @for i in 0 1 2 3 4 5 6 7 8 9; do \
502                 echo "Try $$i: $(PublishCp) $(SRC_DIST_EXTRALIBS_TARBALL) $(PublishLocation)"; \
503                 if $(PublishCp) $(SRC_DIST_EXTRALIBS_TARBALL) $(PublishLocation); then break; fi\
504         done
505         @for i in 0 1 2 3 4 5 6 7 8 9; do \
506                 echo "Try $$i: $(PublishCp) $(SRC_DIST_TARBALL) $(PublishLocation)"; \
507                 if $(PublishCp) $(SRC_DIST_TARBALL) $(PublishLocation); then break; fi\
508         done
509 endif
510
511 # -----------------------------------------------------------------------------
512 # HC file bundles
513
514 hc-file-bundle :
515         $(RM) -r ghc-$(ProjectVersion)
516         $(LN_S) . ghc-$(ProjectVersion)
517         $(FIND) ghc-$(ProjectVersion)/compiler \
518              ghc-$(ProjectVersion)/utils \
519              ghc-$(ProjectVersion)/compat \
520              ghc-$(ProjectVersion)/libraries -follow \
521           \( -name "*.hc" -o -name "*_hsc.[ch]" -o -name "*_stub.[ch]" \) -print > hc-files-to-go
522         for f in `$(FIND) ghc-$(ProjectVersion)/compiler ghc-$(ProjectVersion)/utils ghc-$(ProjectVersion)/libraries -name "*.hsc" -follow -print` ""; do \
523              if test "x$$f" != "x" && test -e `echo "$$f" | sed 's/hsc$$/hs/g'`; then \
524                 echo `echo "$$f" | sed 's/hsc$$/hs/g' ` >> hc-files-to-go ; \
525              fi; \
526         done;
527         for f in `$(FIND) ghc-$(ProjectVersion)/compiler ghc-$(ProjectVersion)/rts -name "*.cmm" -follow -print` ""; do \
528              if test "x$$f" != "x"; then \
529                 echo `echo "$$f" | sed 's/cmm$$/hc/g' ` >> hc-files-to-go ; \
530              fi; \
531         done;
532         echo ghc-$(ProjectVersion)/libraries/base/GHC/PrimopWrappers.hs >> hc-files-to-go
533         echo ghc-$(ProjectVersion)/compiler/parser/Parser.hs >> hc-files-to-go
534         echo ghc-$(ProjectVersion)/compiler/parser/ParserCore.hs >> hc-files-to-go
535         echo ghc-$(ProjectVersion)/compiler/main/ParsePkgConf.hs >> hc-files-to-go
536         echo ghc-$(ProjectVersion)/libraries/haskell-src/Language/Haskell/Parser.hs >> hc-files-to-go
537         tar czf ghc-$(ProjectVersion)-$(TARGETPLATFORM)-hc.tar.gz `cat hc-files-to-go`
538
539 # -----------------------------------------------------------------------------
540 # Cleaning
541
542 CLEAN_FILES += hc-files-to-go *-hc.tar.gz
543
544 DIST_CLEAN_FILES += config.cache config.status mk/config.h mk/stamp-h \
545         ghc.spec docs/users_guide/ug-book.xml
546
547 # don't clean config.mk: it's needed when cleaning stuff later on
548 LATE_DIST_CLEAN_FILES += mk/config.mk 
549
550 # VERSION is shipped in a source dist
551 MAINTAINER_CLEAN_FILES += VERSION
552
553 extraclean::
554         $(RM) -rf autom4te.cache
555
556 # -----------------------------------------------------------------------------
557
558 # Turn off target.mk's rules for 'all', 'boot' and 'install'.
559 NO_BOOT_TARGET=YES
560 NO_ALL_TARGET=YES
561 NO_INSTALL_TARGET=YES
562
563 include $(TOP)/mk/target.mk
564
565 # -----------------------------------------------------------------------------
566