FIX BUILD on Windows
[ghc-hetmet.git] / Makefile
1 ############################################################################
2 #
3 #               This is the top-level Makefile for GHC
4 #
5 # Targets: 
6 #
7 #       bootstrap (DEFAULT)
8 #               Builds GHC, then builds the libraries,
9 #               then uses this GHC ("stage 1") to build itself
10 #               ("stage 2").
11 #
12 #       bootstrap2
13 #               Same as bootstrap
14 #
15 #       bootstrap3
16 #               bootstrap2 + we build GHC one more time ("stage 3")
17 #
18 #       stage1
19 #               Just build up to stage 1
20 #
21 #       stage2
22 #               Just build stage 2 (stage 1 must be built)
23 #
24 #       stage3
25 #               Just build stage 3 (stage 2 must be built)
26 #
27 #       all
28 #               Same as bootstrap
29 #
30 #       install
31 #               Install everything, including stage 2 compiler by default
32 #               (override with stage=3, for example).
33 #
34 #       dist
35 #               Make a source dist (WARNING: runs 'make distclean' first)
36 #
37 #       binary-dist
38 #               Builds a binary distribution
39 #
40 #       framework-pkg  [MacOS only]
41 #               Builds /Library/Frameworks/GHC.framework wrapped into a Mac
42 #               installer package
43 #
44 #       framework-binary-dist  [MacOS only]
45 #               Builds GHC.framework encapsulating a binary distribution
46 #               (to give a relocatable framework)
47 #
48 #       hc-file-bundle
49 #               Builds an HC-file bundle, for bootstrapping
50 #
51 #       clean, distclean, maintainer-clean
52 #               Increasing levels of cleanliness
53 #
54 ############################################################################
55
56 TOP=.
57 include $(TOP)/mk/boilerplate.mk
58
59 #
60 # Order is important! It's e.g. necessary to descend into include/
61 # before the rest to have a config.h, etc.
62 #
63 # If we're booting from .hc files, swap the order
64 # we descend into subdirs - to boot utils must be before driver.
65 #
66 .PHONY: stage1 stage2 stage3 bootstrap bootstrap2 bootstrap3
67
68 # We can't 'make boot' in libraries until stage1 is built
69 ifeq "$(BootingFromHc)" "YES"
70 SUBDIRS_BUILD = includes rts compiler docs utils driver
71 else
72 SUBDIRS_BUILD = includes utils driver docs compiler rts libraries/Cabal/doc
73 endif
74
75 SUBDIRS = gmp libffi includes utils driver docs rts libraries compiler libraries/Cabal/doc
76
77 check-all: check-tools check-packages
78
79 check-tools:
80         @:
81 ifeq "$(HADDOCK_DOCS)" "YES"
82 ifeq "$(HADDOCK)"      ""
83         echo "Couldn't find haddock" >&2
84         exit 1
85 endif
86 endif
87
88 # Sanity check that all the boot libraries are in the tree, to catch
89 # failure to run darcs-all.
90 check-packages :
91         @ds=`cat libraries/boot-packages`;\
92         for d in $$ds; do \
93           if test ! -d libraries/$$d; then \
94              echo "Looks like you're missing libraries/$$d,"; \
95              echo "maybe you haven't done './darcs-all get'?"; \
96              exit 1; \
97           fi \
98         done
99         @if test ! -f libraries/base/configure; then \
100             echo "Looks like you're missing base's configure script."; \
101             echo "Did you run 'sh boot' at the top level?"; \
102             exit 1; \
103         fi
104
105 ifeq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
106 ifneq "$(WhatGccIsCalled)" ""
107 GCC_LIB_DEP = stamp.inplace-gcc-lib
108 endif
109 endif
110
111 stage1 : $(GCC_LIB_DEP) check-all
112         $(MAKE) -C libraries boot
113         $(MAKE) -C gmp       all
114         $(MAKE) -C libffi    all
115         $(MAKE) -C utils/mkdependC boot
116         @case '${MFLAGS}' in *-[ik]*) x_on_err=0;; *-r*[ik]*) x_on_err=0;; *) x_on_err=1;; esac; \
117         for i in $(SUBDIRS_BUILD); do \
118           echo "------------------------------------------------------------------------"; \
119           echo "== $(MAKE) boot $(MFLAGS);"; \
120           echo " in $(shell pwd)/$$i"; \
121           echo "------------------------------------------------------------------------"; \
122           $(MAKE) --no-print-directory -C $$i $(MFLAGS) boot; \
123           if [ $$? -eq 0 -o $$x_on_err -eq 0 ] ;  then true; else exit 1; fi; \
124         done; \
125         for i in $(SUBDIRS_BUILD); do \
126           echo "------------------------------------------------------------------------"; \
127           echo "== $(MAKE) all $(MFLAGS);"; \
128           echo " in $(shell pwd)/$$i"; \
129           echo "------------------------------------------------------------------------"; \
130           $(MAKE) --no-print-directory -C $$i $(MFLAGS) all; \
131           if [ $$? -eq 0 -o $$x_on_err -eq 0 ] ;  then true; else exit 1; fi; \
132         done
133         $(MAKE) -C libraries all
134
135 # When making distributions (i.e., whether with binary-dist or using the 
136 # vanilla install target to create an installer package), we can have problems
137 # if some things (e.g. ghc-pkg) are compiled with the bootstrapping compiler 
138 # and some (e.g. the stage 2 compiler) with the stage1 compiler. See #1860 for
139 # an example.  Thus, we explicitly build a second version with the stage 1 
140 # compiler of all utils that get installed and of all extra support binaries
141 # includes in binary dists.
142 stage2 : check-all
143         $(MAKE) -C compiler boot stage=2
144         $(MAKE) -C compiler stage=2
145
146
147 stage3 : check-all
148         $(MAKE) -C compiler boot stage=3
149         $(MAKE) -C compiler stage=3
150
151 bootstrap  : bootstrap2
152
153 bootstrap2 : stage1
154         $(MAKE) stage2
155
156 bootstrap3 : bootstrap2
157         $(MAKE) stage3
158
159 ifeq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
160 ifneq "$(WhatGccIsCalled)" ""
161 all :: stamp.inplace-gcc-lib
162
163 .PHONY: stamp.inplace-gcc-lib
164
165 # This is a hack to make Cabal able to find ld when we run tests with
166 # the inplace ghc. We should probably install all the gcc stuff in our
167 # tree somewhere, and then have install copy it from there rather than
168 # from the filesystem.
169 stamp.inplace-gcc-lib:
170         $(RM) -r compiler/gcc-lib
171         mkdir compiler/gcc-lib
172         cp $(LD) compiler/gcc-lib
173         touch $@
174
175 clean ::
176         $(RM) -r compiler/gcc-lib
177         $(RM) -f inplace-gcc-lib
178 endif
179 endif
180
181 all :: bootstrap
182
183 # -----------------------------------------------------------------------------
184 # Installing
185
186 # We want to install the stage 2 bootstrapped compiler by default, but we let
187 # the user override this by saying 'make install stage=1', for example.
188 ifeq "$(stage)" ""
189 INSTALL_STAGE = stage=2
190 else
191 INSTALL_STAGE =
192 endif
193
194 install-strip:
195         $(MAKE) INSTALL_PROGRAM='$(INSTALL_PROGRAM) -s' install
196
197 # Same as default rule, but we pass $(INSTALL_STAGE) to $(MAKE) too
198 install :: check-packages
199         @case '${MFLAGS}' in *-[ik]*) x_on_err=0;; *-r*[ik]*) x_on_err=0;; *) x_on_err=1;; esac; \
200         for i in $(SUBDIRS); do \
201           echo "------------------------------------------------------------------------"; \
202           echo "== $(MAKE) $@ $(MFLAGS);"; \
203           echo " in $(shell pwd)/$$i"; \
204           echo "------------------------------------------------------------------------"; \
205           $(MAKE) --no-print-directory -C $$i $(INSTALL_STAGE) $(MFLAGS) $@; \
206           if [ $$? -eq 0 -o $$x_on_err -eq 0 ] ;  then true; else exit 1; fi; \
207         done
208
209 ifeq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
210 # These files need to be in the InstallShield
211 # INSTALL_DATAS rather than INSTALL_DOCS is used so these files go
212 # in the top-level directory of the distribution
213 INSTALL_DATAS += ANNOUNCE LICENSE README
214 endif
215
216 # If installing on Windows with MinGW32, copy the gcc compiler, headers and libs
217 # and the perl interpreter and dll into the GHC prefix directory.
218 # Gcc and Perl source locations derived from configuration data.
219 ifeq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
220 ifneq "$(WhatGccIsCalled)" ""
221 install ::
222         -mkdir $(prefix)/gcc-lib
223         -mkdir $(prefix)/include
224         -mkdir $(prefix)/include/mingw
225         -cp -rp $(GccDir)../include/* $(prefix)/include/mingw
226         -cp -rp $(GccDir)../lib/gcc-lib/mingw32/$(GccVersion)/* $(prefix)/gcc-lib
227         -cp -rp $(GccDir)../lib/gcc/mingw32/$(GccVersion)/* $(prefix)/gcc-lib
228         -cp -rp $(GccDir)../libexec/gcc/mingw32/$(GccVersion)/* $(prefix)/gcc-lib
229         -cp $(GccDir)../lib/*.* $(prefix)/gcc-lib
230         -cp $(GccDir)gcc.exe $(prefix)
231         -cp $(GccDir)as.exe $(prefix)/gcc-lib
232         -cp $(GccDir)ld.exe $(prefix)/gcc-lib
233         -cp $(GccDir)dllwrap.exe $(prefix)/gcc-lib
234         -cp $(GccDir)dlltool.exe $(prefix)/gcc-lib
235         -cp $(GhcDir)../perl.exe $(prefix)
236         -cp $(GhcDir)../perl56.dll $(prefix)
237 endif
238 endif
239
240 # Install gcc-extra-opts
241 install ::
242         $(INSTALL_DIR) $(DESTDIR)$(libdir)
243         $(INSTALL_DATA) $(INSTALL_OPTS) extra-gcc-opts $(DESTDIR)$(libdir)
244
245 install-docs ::
246         @case '${MFLAGS}' in *-[ik]*) x_on_err=0;; *-r*[ik]*) x_on_err=0;; *) x_on_err=1;; esac; \
247         for i in $(SUBDIRS); do \
248           echo "------------------------------------------------------------------------"; \
249           echo "== $(MAKE) $@ $(MFLAGS);"; \
250           echo " in $(shell pwd)/$$i"; \
251           echo "------------------------------------------------------------------------"; \
252           $(MAKE) --no-print-directory -C $$i $(INSTALL_STAGE) $(MFLAGS) $@; \
253           if [ $$? -eq 0 -o $$x_on_err -eq 0 ] ;  then true; else exit 1; fi; \
254         done
255
256 # -----------------------------------------------------------------------------
257 # Making a binary distribution
258 #
259 # `dist' `binary-dist'
260 #      Create a distribution tar file for this program. The tar file
261 #      should be set up so that the file names in the tar file start with
262 #      a subdirectory name which is the name of the package it is a
263 #      distribution for. This name can include the version number.
264 #
265 #      For example, the distribution tar file of GCC version 1.40 unpacks
266 #      into a subdirectory named `gcc-1.40'.
267
268 #      The easiest way to do this is to create a subdirectory
269 #      appropriately named, use ln or cp to install the proper files in
270 #      it, and then tar that subdirectory.
271
272 #      The dist target should explicitly depend on all non-source files
273 #      that are in the distribution, to make sure they are up to date in
274 #      the distribution. See Making Releases.
275 #
276 #       binary-dist is a GHC addition for binary distributions
277
278
279 binary-dist::
280         -rm -rf $(BIN_DIST_DIR)
281         -$(RM) $(BIN_DIST_TARBALL)
282
283 ifeq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
284
285 binary-dist::
286         $(MAKE) prefix=$(BIN_DIST_DIR) install
287         $(MAKE) prefix=$(BIN_DIST_DIR) install-docs
288
289 binary-dist::
290         cd $(BIN_DIST_DIR) && $(SHELL) ../distrib/prep-bin-dist-mingw
291
292 binary-dist::
293         $(MKDIRHIER) $(BIN_DIST_DIR)/icons
294         cp distrib/hsicon.ico $(BIN_DIST_DIR)/icons
295
296 else
297
298 BinDistDirs = includes compiler docs rts
299
300 BIN_DIST_TOP= distrib/Makefile \
301               distrib/configure-bin.ac \
302               distrib/INSTALL \
303               distrib/README \
304               ANNOUNCE \
305               LICENSE \
306               install-sh \
307               extra-gcc-opts.in \
308               config.guess \
309               config.sub   \
310               aclocal.m4
311
312 ifeq "$(darwin_TARGET_OS)" "1"
313 BIN_DIST_TOP+=mk/fix_install_names.sh
314 endif
315
316 .PHONY: binary-dist-pre% binary-dist
317
318 binary-dist:: binary-dist-pre
319
320 binary-dist-pre::
321         $(MKDIRHIER) $(BIN_DIST_DIR)/mk
322         echo 'include $$(TOP)/Makefile-vars' >  $(BIN_DIST_DIR)/mk/boilerplate.mk
323         echo 'include $$(TOP)/mk/package.mk' >  $(BIN_DIST_DIR)/mk/target.mk
324         echo 'include $$(TOP)/mk/install.mk' >> $(BIN_DIST_DIR)/mk/target.mk
325         echo 'include $$(TOP)/mk/recurse.mk' >> $(BIN_DIST_DIR)/mk/target.mk
326         cp mk/package.mk $(BIN_DIST_DIR)/mk/
327         cp mk/install.mk $(BIN_DIST_DIR)/mk/
328         cp mk/recurse.mk $(BIN_DIST_DIR)/mk/
329         cp mk/fptools.css $(BIN_DIST_DIR)/mk/
330         $(MKDIRHIER) $(BIN_DIST_DIR)/lib/$(TARGETPLATFORM)
331         $(MKDIRHIER) $(BIN_DIST_DIR)/share
332
333 binary-dist::
334         $(MAKE) -C gmp       binary-dist DOING_BIN_DIST=YES
335         $(MAKE) -C includes  binary-dist DOING_BIN_DIST=YES
336         $(MAKE) -C compiler  binary-dist DOING_BIN_DIST=YES $(INSTALL_STAGE)
337         $(MAKE) -C rts       binary-dist DOING_BIN_DIST=YES
338         $(MAKE) -C driver    binary-dist DOING_BIN_DIST=YES
339         $(MAKE) -C utils     binary-dist DOING_BIN_DIST=YES
340         $(MAKE) -C docs      binary-dist DOING_BIN_DIST=YES
341         $(MAKE) -C libraries binary-dist DOING_BIN_DIST=YES
342         $(MAKE) -C libraries/Cabal/doc binary-dist DOING_BIN_DIST=YES
343
344 VARFILE=$(BIN_DIST_DIR)/Makefile-vars.in
345
346 binary-dist::
347         @for i in $(BIN_DIST_TOP); do \
348           if test -f "$$i"; then \
349              echo cp $$i $(BIN_DIST_DIR); \
350              cp $$i $(BIN_DIST_DIR); \
351           fi; \
352         done;
353         @echo "Configuring the Makefile for this project..."
354         echo                                                         >  $(VARFILE)
355         echo "package = ghc"                                         >> $(VARFILE)
356         echo "version = $(ProjectVersion)"                           >> $(VARFILE)
357         echo "ProjectVersion = $(ProjectVersion)"                    >> $(VARFILE)
358         echo "HaveLibGmp = $(HaveLibGmp)"                            >> $(VARFILE)
359         echo "GhcLibsWithUnix = $(GhcLibsWithUnix)"                  >> $(VARFILE)
360         echo "GhcWithInterpreter = $(GhcWithInterpreter)"            >> $(VARFILE)
361         echo "GhcHasEditline = $(GhcHasEditline)"                    >> $(VARFILE)
362         echo "BootingFromHc = $(BootingFromHc)"                      >> $(VARFILE)
363         echo "XMLDocWays = $(XMLDocWays)"                            >> $(VARFILE)
364         # We won't actually use xsltproc, but we need to know if it's "" or not
365         echo "XSLTPROC = $(XSLTPROC)"                                >> $(VARFILE)
366         echo "TARGETPLATFORM = $(TARGETPLATFORM)"                    >> $(VARFILE)
367         echo "HADDOCK_DOCS = $(HADDOCK_DOCS)"                        >> $(VARFILE)
368
369         cat distrib/Makefile-bin-vars.in                             >> $(VARFILE)
370         @echo "Generating a shippable configure script.."
371         $(MV) $(BIN_DIST_DIR)/configure-bin.ac $(BIN_DIST_DIR)/configure.ac
372         ( cd $(BIN_DIST_DIR); autoreconf )
373 endif
374
375 # Tar up the distribution and build a manifest
376 binary-dist :: tar-binary-dist
377
378 .PHONY: tar-binary-dist
379 tar-binary-dist:
380         ( cd $(BIN_DIST_TOPDIR_ABS); tar cf - $(BIN_DIST_NAME) | bzip2 >$(BIN_DIST_TARBALL) )
381         ( cd $(BIN_DIST_TOPDIR_ABS); bunzip2 -c $(BIN_DIST_TARBALL) | tar tf - | sed "s/^ghc-$(ProjectVersion)/fptools/" | sort >$(FPTOOLS_TOP_ABS)/bin-manifest-$(ProjectVersion) )
382
383 PUBLISH_FILES = $(BIN_DIST_TARBALL)
384
385 # Upload the distribution and documentation
386 ifneq "$(ISCC)" ""
387 WINDOWS_INSTALLER_BASE = ghc-$(ProjectVersion)-$(TARGETPLATFORM)
388 WINDOWS_INSTALLER = $(WINDOWS_INSTALLER_BASE)$(exeext)
389
390 PUBLISH_FILES += $(WINDOWS_INSTALLER)
391
392 binary-dist :: generate-windows-installer
393
394 .PHONY: generate-windows-installer
395 generate-windows-installer ::
396         $(SED) "s/@VERSION@/$(ProjectVersion)/" distrib/ghc.iss | $(ISCC) /O. /F$(WINDOWS_INSTALLER_BASE) -
397 endif
398
399 # Upload the distribution and documentation
400 ifneq "$(PublishLocation)" ""
401 publish ::
402         make publish-binary-dist 'prefix=$(BIN_DIST_INST_DIR)'
403 endif
404
405 nTimes = set -e; for i in `seq 1 $(1)`; do echo Try "$$i: $(2)"; if $(2); then break; fi; done
406
407 .PHONY: publish-binary-dist
408 publish-binary-dist ::
409         @for f in $(PUBLISH_FILES); \
410             do $(call nTimes,10,$(PublishCp) $$f $(PublishLocation)/dist); \
411         done
412
413 # You need to "make binddisttest" before publishing the docs, as it
414 # works by publish setting $(prefix) to inside the binddisttest
415 # directory so $(docdir) points to the right place.
416
417 # We assume that Windows means Cygwin, as we can't just use docdir
418 # unchanged or rsync (really SSH?) thinks that c:/foo means /foo on
419 # the machine c.
420
421 ifeq "$(Windows)" "YES"
422 PUBLISH_DOCDIR = $(shell cygpath --unix $(docdir))
423 else
424 PUBLISH_DOCDIR = $(docdir)
425 endif
426
427 publish-binary-dist ::
428         $(call nTimes,10,$(PublishCp) -r "$(PUBLISH_DOCDIR)"/* $(PublishLocation)/docs)
429
430 binary-dist::
431         @echo "Mechanical and super-natty! Inspect the result and *if* happy; freeze, sell and get some sleep!"
432
433 # -----------------------------------------------------------------------------
434 # Building MacOS installer packages
435 #
436 # 'framework-pkg'
437 #       Create an installer package for /Library/Frameworks/GHC.framework
438 #
439 # 'framework-binary-dist'
440 #       Create an installer package for GHC.framework encapsulating a
441 #       binary-dist to make it relocatable
442 #       FIXME: This is only partially implemented so far
443
444 ifeq "$(darwin_TARGET_OS)" "1"
445
446 .PHONY: framework-pkg, framework-binary-dist
447
448 framework-pkg:
449         $(MAKE) -C distrib/MacOS framework-pkg
450
451 framework-binary-dist:
452         $(MAKE) -C distrib/MacOS framework-binary-dist
453
454 endif
455
456 # -----------------------------------------------------------------------------
457 # Building source distributions
458 #
459 # Do it like this: 
460 #
461 #       $ make
462 #       $ make dist
463 #
464 # WARNING: `make dist' calls `make distclean' before tarring up the tree.
465 #
466
467 .PHONY: dist
468
469 #
470 # Directory in which we're going to build the src dist
471 #
472 SRC_DIST_NAME=ghc-$(ProjectVersion)
473 SRC_DIST_DIR=$(shell pwd)/$(SRC_DIST_NAME)
474
475 #
476 # Files to include in source distributions
477 #
478 SRC_DIST_DIRS += mk docs distrib bindisttest $(filter-out docs distrib libraries/Cabal/doc,$(SUBDIRS))
479 SRC_DIST_FILES += \
480         configure.ac config.guess config.sub configure \
481         aclocal.m4 README ANNOUNCE HACKING LICENSE Makefile install-sh \
482         ghc.spec.in ghc.spec extra-gcc-opts.in VERSION boot
483
484 # -----------------------------------------------------------------------------
485 # Source distributions
486
487 # A source dist is built from a complete build tree, because we
488 # require some extra files not contained in a darcs checkout: the
489 # output from Happy and Alex, for example.
490
491 # The steps performed by 'make dist' are as follows:
492 #   - create a complete link-tree of the current build tree in /tmp
493 #   - run 'make distclean' on that tree
494 #   - remove a bunch of other files that we know shouldn't be in the dist
495 #   - tar up first the extralibs package, then the main source package
496
497 EXTRA_LIBS=$(patsubst %, $(SRC_DIST_NAME)/libraries/%, $(shell cat libraries/extra-packages))
498
499 SRC_DIST_TARBALL = ghc-$(ProjectVersion)-src.tar.bz2
500 SRC_DIST_EXTRALIBS_TARBALL = ghc-$(ProjectVersion)-src-extralibs.tar.bz2
501
502 VERSION :
503         echo $(ProjectVersion) >VERSION
504
505 dist :: VERSION
506
507 dist ::
508         $(RM) -rf $(SRC_DIST_DIR)
509         $(RM) $(SRC_DIST_NAME).tar.gz
510         mkdir $(SRC_DIST_DIR)
511         ( cd $(SRC_DIST_DIR) \
512           && for i in $(SRC_DIST_DIRS); do mkdir $$i; (cd $$i && lndir $(FPTOOLS_TOP_ABS)/$$i ); done \
513           && for i in $(SRC_DIST_FILES); do $(LN_S) $(FPTOOLS_TOP_ABS)/$$i .; done \
514           && $(MAKE) distclean \
515           && 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 \
516           && $(RM) -rf compiler/stage[123] mk/build.mk \
517           && $(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 \
518         )
519         tar chf - $(EXTRA_LIBS) | bzip2 >$(FPTOOLS_TOP_ABS)/$(SRC_DIST_EXTRALIBS_TARBALL)
520         $(RM) -rf $(EXTRA_LIBS)
521         tar chf - $(SRC_DIST_NAME) 2>$src_log | bzip2 >$(FPTOOLS_TOP_ABS)/$(SRC_DIST_TARBALL)
522
523 # Upload the distribution(s)
524 # Retrying is to work around buggy firewalls that corrupt large file transfers
525 # over SSH.
526 ifneq "$(PublishLocation)" ""
527 dist ::
528         @for i in 0 1 2 3 4 5 6 7 8 9; do \
529                 echo "Try $$i: $(PublishCp) $(SRC_DIST_EXTRALIBS_TARBALL) $(PublishLocation)/dist"; \
530                 if $(PublishCp) $(SRC_DIST_EXTRALIBS_TARBALL) $(PublishLocation)/dist; then break; fi\
531         done
532         @for i in 0 1 2 3 4 5 6 7 8 9; do \
533                 echo "Try $$i: $(PublishCp) $(SRC_DIST_TARBALL) $(PublishLocation)/dist"; \
534                 if $(PublishCp) $(SRC_DIST_TARBALL) $(PublishLocation)/dist; then break; fi\
535         done
536 endif
537
538 # -----------------------------------------------------------------------------
539 # HC file bundles
540
541 hc-file-bundle :
542         $(RM) -r ghc-$(ProjectVersion)
543         $(LN_S) . ghc-$(ProjectVersion)
544         $(FIND) ghc-$(ProjectVersion)/compiler \
545              ghc-$(ProjectVersion)/utils \
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         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