449136969925b77d62b1cf389e41c292976f4f22
[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         $(INSTALL_DIR) $(bindir)
139         @case '${MFLAGS}' in *-[ik]*) x_on_err=0;; *-r*[ik]*) x_on_err=0;; *) x_on_err=1;; esac; \
140         for i in $(SUBDIRS); do \
141           echo "------------------------------------------------------------------------"; \
142           echo "== $(MAKE) $@ $(MFLAGS);"; \
143           echo " in $(shell pwd)/$$i"; \
144           echo "------------------------------------------------------------------------"; \
145           $(MAKE) --no-print-directory -C $$i $(INSTALL_STAGE) $(MFLAGS) $@; \
146           if [ $$? -eq 0 -o $$x_on_err -eq 0 ] ;  then true; else exit 1; fi; \
147         done
148
149 ifeq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
150 # These files need to be in the InstallShield
151 # INSTALL_DATAS rather than INSTALL_DOCS is used so these files go
152 # in the top-level directory of the distribution
153 INSTALL_DATAS += ANNOUNCE LICENSE README
154 endif
155
156 # If installing on Windows with MinGW32, copy the gcc compiler, headers and libs
157 # and the perl interpreter and dll into the GHC prefix directory.
158 # Gcc and Perl source locations derived from configuration data.
159 ifeq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
160 ifneq "$(WhatGccIsCalled)" ""
161 install ::
162         -mkdir $(prefix)/gcc-lib
163         -mkdir $(prefix)/include
164         -mkdir $(prefix)/include/mingw
165         -cp -rp $(GccDir)../include/* $(prefix)/include/mingw
166         -cp -rp $(GccDir)../lib/gcc-lib/mingw32/$(GccVersion)/* $(prefix)/gcc-lib
167         -cp -rp $(GccDir)../lib/gcc/mingw32/$(GccVersion)/* $(prefix)/gcc-lib
168         -cp -rp $(GccDir)../libexec/gcc/mingw32/$(GccVersion)/* $(prefix)/gcc-lib
169         -cp $(GccDir)../lib/*.* $(prefix)/gcc-lib
170         -cp $(GccDir)gcc.exe $(prefix)
171         -cp $(GccDir)as.exe $(prefix)/gcc-lib
172         -cp $(GccDir)ld.exe $(prefix)/gcc-lib
173         -cp $(GccDir)dllwrap.exe $(prefix)/gcc-lib
174         -cp $(GccDir)dlltool.exe $(prefix)/gcc-lib
175         -cp $(GhcDir)../perl.exe $(prefix)
176         -cp $(GhcDir)../perl56.dll $(prefix)
177 endif
178 endif
179
180 install-docs ::
181         @case '${MFLAGS}' in *-[ik]*) x_on_err=0;; *-r*[ik]*) x_on_err=0;; *) x_on_err=1;; esac; \
182         for i in $(SUBDIRS); do \
183           echo "------------------------------------------------------------------------"; \
184           echo "== $(MAKE) $@ $(MFLAGS);"; \
185           echo " in $(shell pwd)/$$i"; \
186           echo "------------------------------------------------------------------------"; \
187           $(MAKE) --no-print-directory -C $$i $(INSTALL_STAGE) $(MFLAGS) $@; \
188           if [ $$? -eq 0 -o $$x_on_err -eq 0 ] ;  then true; else exit 1; fi; \
189         done
190
191 # -----------------------------------------------------------------------------
192 # Making a binary distribution
193 #
194 # `dist' `binary-dist'
195 #      Create a distribution tar file for this program. The tar file
196 #      should be set up so that the file names in the tar file start with
197 #      a subdirectory name which is the name of the package it is a
198 #      distribution for. This name can include the version number.
199 #
200 #      For example, the distribution tar file of GCC version 1.40 unpacks
201 #      into a subdirectory named `gcc-1.40'.
202
203 #      The easiest way to do this is to create a subdirectory
204 #      appropriately named, use ln or cp to install the proper files in
205 #      it, and then tar that subdirectory.
206
207 #      The dist target should explicitly depend on all non-source files
208 #      that are in the distribution, to make sure they are up to date in
209 #      the distribution. See Making Releases.
210 #
211 #       binary-dist is a GHC addition for binary distributions
212
213
214 ifneq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
215 BinDistShScripts = ghc-$(ProjectVersion) ghci-$(ProjectVersion) ghc-pkg-$(ProjectVersion) hsc2hs-ghc
216 else
217 BinDistShScripts =
218 endif
219
220 BinDistPrlScripts = ghcprof
221 BinDistLibPrlScripts = ghc-asm ghc-split
222 BinDistBins = hp2ps runghc
223 BinDistLinks = ghc ghci ghc-pkg
224 BinDistLibSplicedFiles = package.conf
225 BinDistDirs = includes compiler docs driver rts utils
226
227 BIN_DIST_TARBALL=ghc-$(ProjectVersion)-$(TARGETPLATFORM).tar.bz2
228
229 BIN_DIST_TOP= distrib/Makefile \
230               distrib/configure-bin.ac \
231               distrib/INSTALL \
232               distrib/README \
233               ANNOUNCE \
234               LICENSE \
235               utils/mkdirhier/mkdirhier \
236               install-sh \
237               config.guess \
238               config.sub   \
239               aclocal.m4
240
241 ifeq "$(darwin_TARGET_OS)" "1"
242 BIN_DIST_TOP+=mk/fix_install_names.sh
243 endif
244
245 .PHONY: binary-dist-pre% binary-dist binary-pack
246
247 BINARY_DIST_PRE_RULES=$(foreach d,$(BinDistDirs),binary-dist-pre-$d)
248
249 binary-dist:: binary-dist-pre $(BINARY_DIST_PRE_RULES)
250
251 binary-dist-pre::
252         -rm -rf $(BIN_DIST_DIR)
253         -$(RM) $(BIN_DIST_DIR).tar.gz
254         $(MKDIRHIER) $(BIN_DIST_DIR)/bin/$(TARGETPLATFORM)
255         $(MKDIRHIER) $(BIN_DIST_DIR)/lib/$(TARGETPLATFORM)
256         $(MKDIRHIER) $(BIN_DIST_DIR)/share
257
258 $(BINARY_DIST_PRE_RULES): binary-dist-pre-%:
259         $(MAKE) -C $* $(MFLAGS) $(INSTALL_STAGE) install \
260                 prefix=$(BIN_DIST_DIR) \
261                 exec_prefix=$(BIN_DIST_DIR) \
262                 bindir=$(BIN_DIST_DIR)/bin/$(TARGETPLATFORM) \
263                 libdir=$(BIN_DIST_DIR)/lib/$(TARGETPLATFORM) \
264                 libexecdir=$(BIN_DIST_DIR)/lib/$(TARGETPLATFORM) \
265                 datadir=$(BIN_DIST_DIR)/share
266
267 VARFILE=$(BIN_DIST_DIR)/Makefile-vars.in
268
269 binary-dist::
270         @for i in $(BIN_DIST_TOP); do \
271           if test -f "$$i"; then \
272              echo cp $$i $(BIN_DIST_DIR); \
273              cp $$i $(BIN_DIST_DIR); \
274           fi; \
275         done;
276         @echo "Configuring the Makefile for this project..."
277         echo                                                         >  $(VARFILE)
278         echo "package = ghc"                                         >> $(VARFILE)
279         echo "version = $(ProjectVersion)"                           >> $(VARFILE)
280         echo "PACKAGE_SH_SCRIPTS = $(BinDistShScripts)"              >> $(VARFILE)
281         echo "PACKAGE_PRL_SCRIPTS = $(BinDistPrlScripts)"            >> $(VARFILE)
282         echo "PACKAGE_LIB_PRL_SCRIPTS = $(BinDistLibPrlScripts)"     >> $(VARFILE)
283         echo "PACKAGE_LIB_SPLICED_FILES = $(BinDistLibSplicedFiles)" >> $(VARFILE)
284         echo "PACKAGE_BINS = $(BinDistBins)"                         >> $(VARFILE)
285         echo "PACKAGE_OPT_BINS = $(BinDistOptBins)"                  >> $(VARFILE)
286         echo "PACKAGE_LINKS = $(BinDistLinks)"                       >> $(VARFILE)
287         cat distrib/Makefile-bin-vars.in                             >> $(VARFILE)
288         @echo "Generating a shippable configure script.."
289         $(MV) $(BIN_DIST_DIR)/configure-bin.ac $(BIN_DIST_DIR)/configure.ac
290         ( cd $(BIN_DIST_DIR); autoconf )
291
292 ifeq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
293 binary-dist::
294         $(MKDIRHIER) $(BIN_DIST_DIR)/icons
295         cp distrib/hsicon.ico $(BIN_DIST_DIR)/icons
296 endif
297
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 # If BINDIST_DOC_WAYS is set, use that
304 # If XMLDocWays is set, use that
305 # Otherwise, figure out what we can build based on configure results
306
307 ifndef BINDIST_DOC_WAYS
308
309 ifneq "$(XMLDocWays)" ""
310 BINDIST_DOC_WAYS = $(XMLDocWays)
311 else
312 ifneq "$(XSLTPROC)" ""
313 BINDIST_DOC_WAYS = html
314 ifneq "$(FOP)" ""
315 BINDIST_DOC_WAYS += ps pdf
316 else
317 ifneq "$(PDFXMLTEX)" ""
318 BINDIST_DOC_WAYS += pdf
319 endif
320 ifneq "$(XMLTEX)" ""
321 ifneq "$(DVIPS)" ""
322 BINDIST_DOC_WAYS += ps
323 endif # DVIPS
324 endif # XMLTEX
325 endif # FOP
326 endif # XSLTPROC
327 endif # XMLDocWays
328
329 endif # BINDIST_DOC_WAYS
330
331 ifneq "$(DIR_DOCBOOK_XSL)" ""
332 .PHONY: binary-dist-doc-%
333
334 BINARY_DIST_DOC_RULES=$(foreach d,$(BinDistDirs),binary-dist-doc-$d)
335
336 binary-dist :: $(BINARY_DIST_DOC_RULES)
337
338 $(BINARY_DIST_DOC_RULES): binary-dist-doc-%:
339         $(MAKE) -C $* $(MFLAGS) $(BINDIST_DOC_WAYS)
340         $(MAKE) -C $* $(MFLAGS) install-docs \
341                         MAKING_BIN_DIST=1 \
342                 XMLDocWays="$(BINDIST_DOC_WAYS)" \
343                 prefix=$(BIN_DIST_DIR) \
344                 exec_prefix=$(BIN_DIST_DIR) \
345                 bindir=$(BIN_DIST_DIR)/bin/$(TARGETPLATFORM) \
346                 libdir=$(BIN_DIST_DIR)/lib/$(TARGETPLATFORM) \
347                 libexecdir=$(BIN_DIST_DIR)/lib/$(TARGETPLATFORM) \
348                 datadir=$(BIN_DIST_DIR)/share
349 endif
350
351 # Rename scripts to $i.prl and $i.sh where necessary.
352 # ToDo: do this in a cleaner way...
353
354 ifneq "$(BinDistPrlScripts)" ""
355 binary-dist::
356         @for i in $(BinDistPrlScripts); do \
357              echo "Renaming $$i to $$i.prl"; \
358             $(MV) $(BIN_DIST_DIR)/bin/$(TARGETPLATFORM)/$$i  $(BIN_DIST_DIR)/bin/$(TARGETPLATFORM)/$$i.prl; \
359         done
360 endif
361
362 ifneq "$(BinDistLibPrlScripts)" ""
363 binary-dist::
364         @for i in $(BinDistLibPrlScripts); do \
365              echo "Renaming $$i to $$i.prl"; \
366             $(MV) $(BIN_DIST_DIR)/lib/$(TARGETPLATFORM)/$$i  $(BIN_DIST_DIR)/lib/$(TARGETPLATFORM)/$$i.prl; \
367         done
368 endif
369
370 ifneq "$(BinDistShScripts)" ""
371 binary-dist::
372         @for i in $(BinDistShScripts); do \
373             if test -x $(BIN_DIST_DIR)/bin/$(TARGETPLATFORM)/$$i ; then \
374                 echo "Renaming $$i to $$i.sh"; \
375                 $(MV) $(BIN_DIST_DIR)/bin/$(TARGETPLATFORM)/$$i  $(BIN_DIST_DIR)/bin/$(TARGETPLATFORM)/$$i.sh; \
376             fi \
377         done
378 endif
379
380 .PHONY: binary-dist-doc-%
381
382 binary-dist::
383         $(MAKE) -C libraries binary-dist
384
385 # Jiggle the files around to make a valid Windows distribution if necessary
386 ifeq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
387 binary-dist :: fiddle-binary-dist
388 endif
389
390 .PHONY: fiddle-binary-dist
391 fiddle-binary-dist:
392         cd $(BIN_DIST_DIR) && ../distrib/prep-bin-dist-mingw
393 # Tar up the distribution and build a manifest
394 binary-dist :: tar-binary-dist
395
396 .PHONY: tar-binary-dist
397 tar-binary-dist:
398         ( cd $(BIN_DIST_TOPDIR); tar cf - $(BIN_DIST_NAME) | bzip2 >$(BIN_DIST_TARBALL) )
399         ( cd $(BIN_DIST_TOPDIR); bunzip2 -c $(BIN_DIST_TARBALL) | tar tf - | sed "s/^ghc-$(ProjectVersion)/fptools/" | sort >bin-manifest-$(ProjectVersion) )
400
401 PUBLISH_FILES = $(BIN_DIST_TARBALL)
402
403 # Upload the distribution and documentation
404 ifneq "$(ISCC)" ""
405 WINDOWS_INSTALLER_BASE = ghc-$(ProjectVersion)-$(TARGETPLATFORM)
406 WINDOWS_INSTALLER = $(WINDOWS_INSTALLER)$(exeext)
407
408 PUBLISH_FILES += $(WINDOWS_INSTALLER)
409
410 binary-dist :: generate-windows-installer
411
412 .PHONY: generate-windows-installer
413 generate-windows-installer ::
414         $(SED) "s/@VERSION@/$(ProjectVersion)/" distrib/ghc.iss | $(ISCC) /O. /F$(WINDOWS_INSTALLER_BASE) -
415 endif
416
417 # Upload the distribution and documentation
418 ifneq "$(PublishLocation)" ""
419 binary-dist :: publish-binary-dist
420 endif
421
422 .PHONY: publish-binary-dist
423 publish-binary-dist ::
424         @for f in $(PUBLISH_FILES); do \
425             for i in 0 1 2 3 4 5 6 7 8 9; do \
426                 echo "Try $$i: $(PublishCp) $$f $(PublishLocation)/dist"; \
427                 if $(PublishCp) $$f $(PublishLocation)/dist; then break; fi; \
428             done \
429         done
430
431 ifeq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
432 # On Windows, we cannot use absoluate pathnames to rsync, because they look
433 # like remote pathnames ("c:/foo/bar").  Also, the docs reside in doc/
434 # rather than share/, due to prep-bin-dist-mingw.
435 publish-binary-dist ::
436         $(PublishCp) -r $(FPTOOLS_TOP)/$(BIN_DIST_NAME)/doc/html/* $(PublishLocation)/docs
437 else
438 publish-binary-dist ::
439         $(PublishCp) -r $(BIN_DIST_DIR)/share/html/* $(PublishLocation)/docs
440 endif
441
442 binary-dist::
443         @echo "Mechanical and super-natty! Inspect the result and *if* happy; freeze, sell and get some sleep!"
444
445 # -----------------------------------------------------------------------------
446 # Building source distributions
447 #
448 # Do it like this: 
449 #
450 #       $ make
451 #       $ make dist
452 #
453 # WARNING: `make dist' calls `make distclean' before tarring up the tree.
454 #
455
456 .PHONY: dist
457
458 #
459 # Directory in which we're going to build the src dist
460 #
461 SRC_DIST_NAME=ghc-$(ProjectVersion)
462 SRC_DIST_DIR=$(shell pwd)/$(SRC_DIST_NAME)
463
464 #
465 # Files to include in source distributions
466 #
467 SRC_DIST_DIRS += mk docs distrib $(filter-out docs distrib,$(SUBDIRS))
468 SRC_DIST_FILES += \
469         configure.ac config.guess config.sub configure \
470         aclocal.m4 README ANNOUNCE HACKING LICENSE Makefile install-sh \
471         ghc.spec.in VERSION
472
473 # -----------------------------------------------------------------------------
474 # Source distributions
475
476 # A source dist is built from a complete build tree, because we
477 # require some extra files not contained in a darcs checkout: the
478 # output from Happy and Alex, for example.
479
480 # The steps performed by 'make dist' are as follows:
481 #   - create a complete link-tree of the current build tree in /tmp
482 #   - run 'make distclean' on that tree
483 #   - remove a bunch of other files that we know shouldn't be in the dist
484 #   - tar up first the extralibs package, then the main source package
485
486 EXTRA_LIBS=$(patsubst %, $(SRC_DIST_NAME)/libraries/%, $(shell cat libraries/extra-packages))
487
488 SRC_DIST_TARBALL = ghc-$(ProjectVersion)-src.tar.bz2
489 SRC_DIST_EXTRALIBS_TARBALL = ghc-$(ProjectVersion)-src-extralibs.tar.bz2
490
491 VERSION :
492         echo $(ProjectVersion) >VERSION
493
494 dist :: VERSION
495
496 dist ::
497         $(RM) -rf $(SRC_DIST_DIR)
498         $(RM) $(SRC_DIST_NAME).tar.gz
499         mkdir $(SRC_DIST_DIR)
500         ( cd $(SRC_DIST_DIR) \
501           && for i in $(SRC_DIST_DIRS); do mkdir $$i; (cd $$i && lndir $(FPTOOLS_TOP_ABS)/$$i ); done \
502           && for i in $(SRC_DIST_FILES); do $(LN_S) $(FPTOOLS_TOP_ABS)/$$i .; done \
503           && $(MAKE) distclean \
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
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 # -----------------------------------------------------------------------------
572
573 # Turn off target.mk's rules for 'all', 'boot' and 'install'.
574 NO_BOOT_TARGET=YES
575 NO_ALL_TARGET=YES
576 NO_INSTALL_TARGET=YES
577
578 include $(TOP)/mk/target.mk
579
580 # -----------------------------------------------------------------------------
581