Detect the snapshot version number using darcs
[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 VERSION :
70         echo $(ProjectVersion) >VERSION
71
72 all :: VERSION
73
74 # Sanity check that all the core libraries are in the tree, to catch
75 # failure to run darcs-all.
76 check-packages :
77         @for d in `cat libraries/core-packages`; do \
78           if test ! -d libraries/$$d; then \
79              echo "Looks like you're missing libraries/$$d,"; \
80              echo "maybe you haven't done 'sh darcs-all get'?"; \
81              exit 1; \
82           fi \
83         done
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
215 else
216 BinDistShScripts =
217 endif
218
219 BinDistPrlScripts = ghcprof
220 BinDistLibPrlScripts = ghc-asm ghc-split
221 BinDistBins = hp2ps runghc
222 BinDistOptBins = runhaskell
223 BinDistLinks = ghc ghci ghc-pkg
224 BinDistLibSplicedFiles = package.conf
225 BinDistDirs = includes compiler docs driver libraries rts utils
226
227 BIN_DIST_NAME=ghc-$(ProjectVersion)
228 BIN_DIST_TMPDIR=$(FPTOOLS_TOP_ABS)
229
230 BIN_DIST_TARBALL=ghc-$(ProjectVersion)-$(TARGETPLATFORM).tar.bz2
231
232 BIN_DIST_TOP= distrib/Makefile-bin.in \
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:: binary-dist-pre
251
252 binary-dist-pre::
253 ifeq "$(BIN_DIST)" ""
254         @echo "WARNING: To run the binary-dist target, you need to set BIN_DIST=1 in mk/build.mk" && exit 1
255 endif
256         -rm -rf $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)
257         -$(RM) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME).tar.gz
258         @for i in $(BinDistDirs); do                     \
259           if test -d "$$i"; then                         \
260            echo $(MKDIRHIER) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/bin/$(TARGETPLATFORM); \
261            $(MKDIRHIER) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/bin/$(TARGETPLATFORM); \
262            echo $(MKDIRHIER) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/lib/$(TARGETPLATFORM); \
263            $(MKDIRHIER) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/lib/$(TARGETPLATFORM); \
264            echo $(MKDIRHIER) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/share; \
265            $(MKDIRHIER) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/share; \
266            echo $(MAKE) -C $$i $(MFLAGS) $(INSTALL_STAGE) install \
267                 prefix=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME) \
268                 exec_prefix=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME) \
269                 bindir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/bin/$(TARGETPLATFORM) \
270                 libdir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/lib/$(TARGETPLATFORM) \
271                 libexecdir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/lib/$(TARGETPLATFORM) \
272                 datadir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/share; \
273            $(MAKE) -C $$i $(MFLAGS) $(INSTALL_STAGE) install \
274                 prefix=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME) \
275                 exec_prefix=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME) \
276                 bindir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/bin/$(TARGETPLATFORM) \
277                 libdir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/lib/$(TARGETPLATFORM) \
278                 libexecdir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/lib/$(TARGETPLATFORM) \
279                 datadir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/share; \
280           fi; \
281         done
282
283 binary-dist::
284         @for i in $(BIN_DIST_TOP); do \
285           if test -f "$$i"; then \
286              echo cp $$i $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME); \
287              cp $$i $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME); \
288           fi; \
289         done;
290         @echo "Configuring the Makefile for this project..."
291         touch $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/Makefile.in
292         echo "package = ghc" >> $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/Makefile.in
293         echo "version = $(ProjectVersion)" >> $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/Makefile.in
294         echo "PACKAGE_SH_SCRIPTS = $(BinDistShScripts)" >> $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/Makefile.in
295         echo "PACKAGE_PRL_SCRIPTS = $(BinDistPrlScripts)" >> $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/Makefile.in
296         echo "PACKAGE_LIB_PRL_SCRIPTS = $(BinDistLibPrlScripts)" >> $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/Makefile.in
297         echo "PACKAGE_LIB_SPLICED_FILES = $(BinDistLibSplicedFiles)" >> $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/Makefile.in
298         echo "PACKAGE_BINS = $(BinDistBins)" >> $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/Makefile.in
299         echo "PACKAGE_OPT_BINS = $(BinDistOptBins)" >> $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/Makefile.in
300         echo "PACKAGE_LINKS = $(BinDistLinks)" >> $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/Makefile.in
301         cat $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/Makefile-bin.in >> $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/Makefile.in
302         @echo "Generating a shippable configure script.."
303         $(MV) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/configure-bin.ac $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/configure.ac
304         ( cd $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME); autoconf )
305 #
306 # binary dist'ing the documentation.  
307 # The default documentation to build/install is given below; overrideable
308 # via build.mk or the 'make' command-line.
309
310 ifndef BINDIST_DOC_WAYS
311
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
328 endif # BINDIST_DOC_WAYS
329
330 binary-dist ::
331 ifneq "$(DIR_DOCBOOK_XSL)" ""
332         @for i in $(BinDistDirs); do                            \
333           if test -d "$$i"; then                                \
334             $(MAKE) -C $$i $(MFLAGS) $(BINDIST_DOC_WAYS);       \
335             echo $(MAKE) -C $$i $(MFLAGS) install-docs XMLDocWays="$(BINDIST_DOC_WAYS)" \
336                 prefix=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)      \
337                 exec_prefix=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME) \
338                 bindir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/bin/$(TARGETPLATFORM) \
339                 libdir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/lib/$(TARGETPLATFORM) \
340                 libexecdir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/lib/$(TARGETPLATFORM) \
341                 datadir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/share; \
342             $(MAKE) -C $$i $(MFLAGS) install-docs XMLDocWays="$(BINDIST_DOC_WAYS)" \
343                 prefix=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)      \
344                 exec_prefix=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME) \
345                 bindir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/bin/$(TARGETPLATFORM) \
346                 libdir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/lib/$(TARGETPLATFORM) \
347                 libexecdir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/lib/$(TARGETPLATFORM) \
348                 datadir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/share; \
349           fi \
350         done
351 endif
352
353 # Rename scripts to $i.prl and $i.sh where necessary.
354 # ToDo: do this in a cleaner way...
355
356 ifneq "$(BinDistPrlScripts)" ""
357 binary-dist::
358         @for i in $(BinDistPrlScripts); do \
359              echo "Renaming $$i to $$i.prl"; \
360             $(MV) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/bin/$(TARGETPLATFORM)/$$i  $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/bin/$(TARGETPLATFORM)/$$i.prl; \
361         done
362 endif
363
364 ifneq "$(BinDistLibPrlScripts)" ""
365 binary-dist::
366         @for i in $(BinDistLibPrlScripts); do \
367              echo "Renaming $$i to $$i.prl"; \
368             $(MV) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/lib/$(TARGETPLATFORM)/$$i  $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/lib/$(TARGETPLATFORM)/$$i.prl; \
369         done
370 endif
371
372 ifneq "$(BinDistShScripts)" ""
373 binary-dist::
374         @for i in $(BinDistShScripts); do \
375             if test -x $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/bin/$(TARGETPLATFORM)/$$i ; then \
376                 echo "Renaming $$i to $$i.sh"; \
377                 $(MV) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/bin/$(TARGETPLATFORM)/$$i  $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/bin/$(TARGETPLATFORM)/$$i.sh; \
378             fi \
379         done
380 endif
381
382 # Tar up the distribution and build a manifest
383 binary-dist ::
384         ( cd $(BIN_DIST_TMPDIR); tar cf - $(BIN_DIST_NAME) | bzip2 >$(BIN_DIST_TARBALL) )
385         ( cd $(BIN_DIST_TMPDIR); bunzip2 -c $(BIN_DIST_TARBALL) | tar tf - | sed "s/^ghc-$(ProjectVersion)/fptools/" | sort >bin-manifest-$(ProjectVersion) )
386
387 # Upload the distribution
388 ifneq "$(PublishLocation)" ""
389 binary-dist ::
390         @for i in 0 1 2 3 4 5 6 7 8 9; do \
391                 echo "Try $$i: $(PublishCp) $(SRC_DIST_EXTRALIBS_TARBALL) $(PublishLocation)"; \
392                 if $(PublishCp) $(SRC_DIST_EXTRALIBS_TARBALL) $(PublishLocation); then break; fi\
393         done
394 endif
395
396 binary-dist::
397         @echo "Mechanical and super-natty! Inspect the result and *if* happy; freeze, sell and get some sleep!"
398
399 # -----------------------------------------------------------------------------
400 # Building source distributions
401 #
402 # Do it like this: 
403 #
404 #       $ make
405 #       $ make dist
406 #
407 # WARNING: `make dist' calls `make distclean' before tarring up the tree.
408 #
409
410 .PHONY: dist
411
412 #
413 # Directory in which we're going to build the src dist
414 #
415 SRC_DIST_NAME=ghc-$(ProjectVersion)
416 SRC_DIST_DIR=$(shell pwd)/$(SRC_DIST_NAME)
417
418 #
419 # Files to include in source distributions
420 #
421 SRC_DIST_DIRS += mk docs distrib $(filter-out docs distrib,$(SUBDIRS))
422 SRC_DIST_FILES += \
423         configure.ac config.guess config.sub configure \
424         aclocal.m4 README ANNOUNCE HACKING LICENSE Makefile install-sh \
425         ghc.spec.in VERSION
426
427 # -----------------------------------------------------------------------------
428 # Source distributions
429
430 # A source dist is built from a complete build tree, because we
431 # require some extra files not contained in a darcs checkout: the
432 # output from Happy and Alex, for example.
433
434 # The steps performed by 'make dist' are as follows:
435 #   - create a complete link-tree of the current build tree in /tmp
436 #   - run 'make distclean' on that tree
437 #   - remove a bunch of other files that we know shouldn't be in the dist
438 #   - tar up first the extralibs package, then the main source package
439
440 EXTRA_LIBS=$(patsubst %, $(SRC_DIST_NAME)/libraries/%, $(shell cat libraries/extra-packages))
441
442 SRC_DIST_TARBALL = ghc-$(ProjectVersion)-src.tar.bz2
443 SRC_DIST_EXTRALIBS_TARBALL = ghc-$(ProjectVersion)-src-extralibs.tar.bz2
444
445 dist ::
446         $(RM) -rf $(SRC_DIST_DIR)
447         $(RM) $(SRC_DIST_NAME).tar.gz
448         mkdir $(SRC_DIST_DIR)
449         ( cd $(SRC_DIST_DIR) \
450           && for i in $(SRC_DIST_DIRS); do mkdir $$i; (cd $$i && lndir $(FPTOOLS_TOP_ABS)/$$i ); done \
451           && for i in $(SRC_DIST_FILES); do $(LN_S) $(FPTOOLS_TOP_ABS)/$$i .; done \
452           && $(MAKE) distclean \
453           && $(RM) -rf compiler/stage[123] mk/build.mk \
454           && $(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 \
455         )
456         tar chf - $(EXTRA_LIBS) | bzip2 >$(FPTOOLS_TOP_ABS)/$(SRC_DIST_EXTRALIBS_TARBALL)
457         $(RM) -rf $(EXTRA_LIBS)
458         tar chf - $(SRC_DIST_NAME) 2>$src_log | bzip2 >$(FPTOOLS_TOP_ABS)/$(SRC_DIST_TARBALL)
459
460 # Upload the distribution(s)
461 # Retrying is to work around buggy firewalls that corrupt large file transfers
462 # over SSH.
463 ifneq "$(PublishLocation)" ""
464 dist ::
465         @for i in 0 1 2 3 4 5 6 7 8 9; do \
466                 echo "Try $$i: $(PublishCp) $(SRC_DIST_EXTRALIBS_TARBALL) $(PublishLocation)"; \
467                 if $(PublishCp) $(SRC_DIST_EXTRALIBS_TARBALL) $(PublishLocation); then break; fi\
468         done
469         @for i in 0 1 2 3 4 5 6 7 8 9; do \
470                 echo "Try $$i: $(PublishCp) $(SRC_DIST_TARBALL) $(PublishLocation)"; \
471                 if $(PublishCp) $(SRC_DIST_TARBALL) $(PublishLocation); then break; fi\
472         done
473 endif
474
475 # -----------------------------------------------------------------------------
476 # HC file bundles
477
478 hc-file-bundle :
479         $(RM) -r ghc-$(ProjectVersion)
480         $(LN_S) . ghc-$(ProjectVersion)
481         $(FIND) ghc-$(ProjectVersion)/compiler \
482              ghc-$(ProjectVersion)/utils \
483              ghc-$(ProjectVersion)/compat \
484              ghc-$(ProjectVersion)/libraries -follow \
485           \( -name "*.hc" -o -name "*_hsc.[ch]" -o -name "*_stub.[ch]" \) -print > hc-files-to-go
486         for f in `$(FIND) ghc-$(ProjectVersion)/compiler ghc-$(ProjectVersion)/utils ghc-$(ProjectVersion)/libraries -name "*.hsc" -follow -print` ""; do \
487              if test "x$$f" != "x" && test -e `echo "$$f" | sed 's/hsc$$/hs/g'`; then \
488                 echo `echo "$$f" | sed 's/hsc$$/hs/g' ` >> hc-files-to-go ; \
489              fi; \
490         done;
491         for f in `$(FIND) ghc-$(ProjectVersion)/compiler ghc-$(ProjectVersion)/rts -name "*.cmm" -follow -print` ""; do \
492              if test "x$$f" != "x"; then \
493                 echo `echo "$$f" | sed 's/cmm$$/hc/g' ` >> hc-files-to-go ; \
494              fi; \
495         done;
496         echo ghc-$(ProjectVersion)/libraries/base/GHC/PrimopWrappers.hs >> hc-files-to-go
497         echo ghc-$(ProjectVersion)/compiler/parser/Parser.hs >> hc-files-to-go
498         echo ghc-$(ProjectVersion)/compiler/parser/ParserCore.hs >> hc-files-to-go
499         echo ghc-$(ProjectVersion)/compiler/main/ParsePkgConf.hs >> hc-files-to-go
500         echo ghc-$(ProjectVersion)/libraries/haskell-src/Language/Haskell/Parser.hs >> hc-files-to-go
501         tar czf ghc-$(ProjectVersion)-$(TARGETPLATFORM)-hc.tar.gz `cat hc-files-to-go`
502
503 # -----------------------------------------------------------------------------
504 # Cleaning
505
506 CLEAN_FILES += hc-files-to-go *-hc.tar.gz
507
508 DIST_CLEAN_FILES += config.cache config.status mk/config.h mk/stamp-h \
509         ghc.spec docs/users_guide/ug-book.xml
510
511 # don't clean config.mk: it's needed when cleaning stuff later on
512 LATE_DIST_CLEAN_FILES += mk/config.mk 
513
514 # VERSION is shipped in a source dist
515 MAINTAINER_CLEAN_FILES += VERSION
516
517 extraclean::
518         $(RM) -rf autom4te.cache
519
520 # -----------------------------------------------------------------------------
521
522 # Turn off target.mk's rules for 'all', 'boot' and 'install'.
523 NO_BOOT_TARGET=YES
524 NO_ALL_TARGET=YES
525 NO_INSTALL_TARGET=YES
526
527 include $(TOP)/mk/target.mk
528
529 # -----------------------------------------------------------------------------
530