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