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