Get rid of compat/
[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 # Sanity check that all the boot libraries are in the tree, to catch
78 # failure to run darcs-all.
79 check-packages :
80         @ds=`cat libraries/boot-packages`;\
81         for d in $$ds; do \
82           if test ! -d libraries/$$d; then \
83              echo "Looks like you're missing libraries/$$d,"; \
84              echo "maybe you haven't done './darcs-all get'?"; \
85              exit 1; \
86           fi \
87         done
88         @if test ! -f libraries/base/configure; then \
89             echo "Looks like you're missing base's configure script."; \
90             echo "Did you run 'sh boot' at the top level?"; \
91             exit 1; \
92         fi
93
94 ifeq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
95 ifneq "$(WhatGccIsCalled)" ""
96 GCC_LIB_DEP = stamp.inplace-gcc-lib
97 endif
98 endif
99
100 stage1 : $(GCC_LIB_DEP) check-packages
101         $(MAKE) -C libraries boot
102         $(MAKE) -C gmp       all
103         $(MAKE) -C libffi    all
104         $(MAKE) -C utils/mkdependC boot
105         @case '${MFLAGS}' in *-[ik]*) x_on_err=0;; *-r*[ik]*) x_on_err=0;; *) x_on_err=1;; esac; \
106         for i in $(SUBDIRS_BUILD); do \
107           echo "------------------------------------------------------------------------"; \
108           echo "== $(MAKE) boot $(MFLAGS);"; \
109           echo " in $(shell pwd)/$$i"; \
110           echo "------------------------------------------------------------------------"; \
111           $(MAKE) --no-print-directory -C $$i $(MFLAGS) boot; \
112           if [ $$? -eq 0 -o $$x_on_err -eq 0 ] ;  then true; else exit 1; fi; \
113         done; \
114         for i in $(SUBDIRS_BUILD); do \
115           echo "------------------------------------------------------------------------"; \
116           echo "== $(MAKE) all $(MFLAGS);"; \
117           echo " in $(shell pwd)/$$i"; \
118           echo "------------------------------------------------------------------------"; \
119           $(MAKE) --no-print-directory -C $$i $(MFLAGS) all; \
120           if [ $$? -eq 0 -o $$x_on_err -eq 0 ] ;  then true; else exit 1; fi; \
121         done
122         $(MAKE) -C libraries all
123
124 # When making distributions (i.e., whether with binary-dist or using the 
125 # vanilla install target to create an installer package), we can have problems
126 # if some things (e.g. ghc-pkg) are compiled with the bootstrapping compiler 
127 # and some (e.g. the stage 2 compiler) with the stage1 compiler. See #1860 for
128 # an example.  Thus, we explicitly build a second version with the stage 1 
129 # compiler of all utils that get installed and of all extra support binaries
130 # includes in binary dists.
131 stage2 : check-packages
132         $(MAKE) -C compiler boot stage=2
133         $(MAKE) -C compiler stage=2
134
135
136 stage3 : check-packages
137         $(MAKE) -C compiler boot stage=3
138         $(MAKE) -C compiler stage=3
139
140 bootstrap  : bootstrap2
141
142 bootstrap2 : stage1
143         $(MAKE) stage2
144
145 bootstrap3 : bootstrap2
146         $(MAKE) stage3
147
148 ifeq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
149 ifneq "$(WhatGccIsCalled)" ""
150 all :: stamp.inplace-gcc-lib
151
152 .PHONY: stamp.inplace-gcc-lib
153
154 # This is a hack to make Cabal able to find ld when we run tests with
155 # the inplace ghc. We should probably install all the gcc stuff in our
156 # tree somewhere, and then have install copy it from there rather than
157 # from the filesystem.
158 stamp.inplace-gcc-lib:
159         $(RM) -r compiler/gcc-lib
160         mkdir compiler/gcc-lib
161         cp $(LD) compiler/gcc-lib
162         touch $@
163
164 clean ::
165         $(RM) -r compiler/gcc-lib
166         $(RM) -f inplace-gcc-lib
167 endif
168 endif
169
170 all :: bootstrap
171
172 # -----------------------------------------------------------------------------
173 # Installing
174
175 # We want to install the stage 2 bootstrapped compiler by default, but we let
176 # the user override this by saying 'make install stage=1', for example.
177 ifeq "$(stage)" ""
178 INSTALL_STAGE = stage=2
179 else
180 INSTALL_STAGE =
181 endif
182
183 install-strip:
184         $(MAKE) INSTALL_PROGRAM='$(INSTALL_PROGRAM) -s' install
185
186 # Same as default rule, but we pass $(INSTALL_STAGE) to $(MAKE) too
187 install :: check-packages
188         @case '${MFLAGS}' in *-[ik]*) x_on_err=0;; *-r*[ik]*) x_on_err=0;; *) x_on_err=1;; esac; \
189         for i in $(SUBDIRS); do \
190           echo "------------------------------------------------------------------------"; \
191           echo "== $(MAKE) $@ $(MFLAGS);"; \
192           echo " in $(shell pwd)/$$i"; \
193           echo "------------------------------------------------------------------------"; \
194           $(MAKE) --no-print-directory -C $$i $(INSTALL_STAGE) $(MFLAGS) $@; \
195           if [ $$? -eq 0 -o $$x_on_err -eq 0 ] ;  then true; else exit 1; fi; \
196         done
197
198 ifeq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
199 # These files need to be in the InstallShield
200 # INSTALL_DATAS rather than INSTALL_DOCS is used so these files go
201 # in the top-level directory of the distribution
202 INSTALL_DATAS += ANNOUNCE LICENSE README
203 endif
204
205 # If installing on Windows with MinGW32, copy the gcc compiler, headers and libs
206 # and the perl interpreter and dll into the GHC prefix directory.
207 # Gcc and Perl source locations derived from configuration data.
208 ifeq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
209 ifneq "$(WhatGccIsCalled)" ""
210 install ::
211         -mkdir $(prefix)/gcc-lib
212         -mkdir $(prefix)/include
213         -mkdir $(prefix)/include/mingw
214         -cp -rp $(GccDir)../include/* $(prefix)/include/mingw
215         -cp -rp $(GccDir)../lib/gcc-lib/mingw32/$(GccVersion)/* $(prefix)/gcc-lib
216         -cp -rp $(GccDir)../lib/gcc/mingw32/$(GccVersion)/* $(prefix)/gcc-lib
217         -cp -rp $(GccDir)../libexec/gcc/mingw32/$(GccVersion)/* $(prefix)/gcc-lib
218         -cp $(GccDir)../lib/*.* $(prefix)/gcc-lib
219         -cp $(GccDir)gcc.exe $(prefix)
220         -cp $(GccDir)as.exe $(prefix)/gcc-lib
221         -cp $(GccDir)ld.exe $(prefix)/gcc-lib
222         -cp $(GccDir)dllwrap.exe $(prefix)/gcc-lib
223         -cp $(GccDir)dlltool.exe $(prefix)/gcc-lib
224         -cp $(GhcDir)../perl.exe $(prefix)
225         -cp $(GhcDir)../perl56.dll $(prefix)
226 endif
227 endif
228
229 # Install gcc-extra-opts
230 install ::
231         $(INSTALL_DIR) $(DESTDIR)$(libdir)
232         $(INSTALL_DATA) $(INSTALL_OPTS) extra-gcc-opts $(DESTDIR)$(libdir)
233
234 install-docs ::
235         @case '${MFLAGS}' in *-[ik]*) x_on_err=0;; *-r*[ik]*) x_on_err=0;; *) x_on_err=1;; esac; \
236         for i in $(SUBDIRS); do \
237           echo "------------------------------------------------------------------------"; \
238           echo "== $(MAKE) $@ $(MFLAGS);"; \
239           echo " in $(shell pwd)/$$i"; \
240           echo "------------------------------------------------------------------------"; \
241           $(MAKE) --no-print-directory -C $$i $(INSTALL_STAGE) $(MFLAGS) $@; \
242           if [ $$? -eq 0 -o $$x_on_err -eq 0 ] ;  then true; else exit 1; fi; \
243         done
244
245 # -----------------------------------------------------------------------------
246 # Making a binary distribution
247 #
248 # `dist' `binary-dist'
249 #      Create a distribution tar file for this program. The tar file
250 #      should be set up so that the file names in the tar file start with
251 #      a subdirectory name which is the name of the package it is a
252 #      distribution for. This name can include the version number.
253 #
254 #      For example, the distribution tar file of GCC version 1.40 unpacks
255 #      into a subdirectory named `gcc-1.40'.
256
257 #      The easiest way to do this is to create a subdirectory
258 #      appropriately named, use ln or cp to install the proper files in
259 #      it, and then tar that subdirectory.
260
261 #      The dist target should explicitly depend on all non-source files
262 #      that are in the distribution, to make sure they are up to date in
263 #      the distribution. See Making Releases.
264 #
265 #       binary-dist is a GHC addition for binary distributions
266
267
268 binary-dist::
269         -rm -rf $(BIN_DIST_DIR)
270         -$(RM) $(BIN_DIST_TARBALL)
271
272 ifeq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
273
274 binary-dist::
275         $(MAKE) prefix=$(BIN_DIST_DIR) install
276         $(MAKE) prefix=$(BIN_DIST_DIR) install-docs
277
278 binary-dist::
279         cd $(BIN_DIST_DIR) && $(SHELL) ../distrib/prep-bin-dist-mingw
280
281 binary-dist::
282         $(MKDIRHIER) $(BIN_DIST_DIR)/icons
283         cp distrib/hsicon.ico $(BIN_DIST_DIR)/icons
284
285 else
286
287 BinDistDirs = includes compiler docs rts
288
289 BIN_DIST_TOP= distrib/Makefile \
290               distrib/configure-bin.ac \
291               distrib/INSTALL \
292               distrib/README \
293               ANNOUNCE \
294               LICENSE \
295               install-sh \
296               extra-gcc-opts.in \
297               config.guess \
298               config.sub   \
299               aclocal.m4
300
301 ifeq "$(darwin_TARGET_OS)" "1"
302 BIN_DIST_TOP+=mk/fix_install_names.sh
303 endif
304
305 .PHONY: binary-dist-pre% binary-dist
306
307 binary-dist:: binary-dist-pre
308
309 binary-dist-pre::
310         $(MKDIRHIER) $(BIN_DIST_DIR)/mk
311         echo 'include $$(TOP)/Makefile-vars' >  $(BIN_DIST_DIR)/mk/boilerplate.mk
312         echo 'include $$(TOP)/mk/package.mk' >  $(BIN_DIST_DIR)/mk/target.mk
313         echo 'include $$(TOP)/mk/install.mk' >> $(BIN_DIST_DIR)/mk/target.mk
314         echo 'include $$(TOP)/mk/recurse.mk' >> $(BIN_DIST_DIR)/mk/target.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 "GhcHasEditline = $(GhcHasEditline)"                    >> $(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 # -----------------------------------------------------------------------------
423 # Building MacOS installer packages
424 #
425 # 'framework-pkg'
426 #       Create an installer package for /Library/Frameworks/GHC.framework
427 #
428 # 'framework-binary-dist'
429 #       Create an installer package for GHC.framework encapsulating a
430 #       binary-dist to make it relocatable
431 #       FIXME: This is only partially implemented so far
432
433 ifeq "$(darwin_TARGET_OS)" "1"
434
435 .PHONY: framework-pkg, framework-binary-dist
436
437 framework-pkg:
438         $(MAKE) -C distrib/MacOS framework-pkg
439
440 framework-binary-dist:
441         $(MAKE) -C distrib/MacOS framework-binary-dist
442
443 endif
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 bindisttest $(filter-out docs distrib libraries/Cabal/doc,$(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 ghc.spec extra-gcc-opts.in VERSION boot
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           && 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 \
505           && $(RM) -rf compiler/stage[123] mk/build.mk \
506           && $(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 \
507         )
508         tar chf - $(EXTRA_LIBS) | bzip2 >$(FPTOOLS_TOP_ABS)/$(SRC_DIST_EXTRALIBS_TARBALL)
509         $(RM) -rf $(EXTRA_LIBS)
510         tar chf - $(SRC_DIST_NAME) 2>$src_log | bzip2 >$(FPTOOLS_TOP_ABS)/$(SRC_DIST_TARBALL)
511
512 # Upload the distribution(s)
513 # Retrying is to work around buggy firewalls that corrupt large file transfers
514 # over SSH.
515 ifneq "$(PublishLocation)" ""
516 dist ::
517         @for i in 0 1 2 3 4 5 6 7 8 9; do \
518                 echo "Try $$i: $(PublishCp) $(SRC_DIST_EXTRALIBS_TARBALL) $(PublishLocation)/dist"; \
519                 if $(PublishCp) $(SRC_DIST_EXTRALIBS_TARBALL) $(PublishLocation)/dist; then break; fi\
520         done
521         @for i in 0 1 2 3 4 5 6 7 8 9; do \
522                 echo "Try $$i: $(PublishCp) $(SRC_DIST_TARBALL) $(PublishLocation)/dist"; \
523                 if $(PublishCp) $(SRC_DIST_TARBALL) $(PublishLocation)/dist; then break; fi\
524         done
525 endif
526
527 # -----------------------------------------------------------------------------
528 # HC file bundles
529
530 hc-file-bundle :
531         $(RM) -r ghc-$(ProjectVersion)
532         $(LN_S) . ghc-$(ProjectVersion)
533         $(FIND) ghc-$(ProjectVersion)/compiler \
534              ghc-$(ProjectVersion)/utils \
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         docs/users_guide/ug-book.xml extra-gcc-opts
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 clean distclean ::
572         $(MAKE) -C bindisttest $@
573         if test -d testsuite; then $(MAKE) -C testsuite $@; fi
574
575 # -----------------------------------------------------------------------------
576
577 # Turn off target.mk's rules for 'all', 'boot' and 'install'.
578 NO_BOOT_TARGET=YES
579 NO_ALL_TARGET=YES
580 NO_INSTALL_TARGET=YES
581
582 include $(TOP)/mk/target.mk
583
584 # -----------------------------------------------------------------------------
585