remove vestiges of CCallable/CReturnable
[ghc-hetmet.git] / Makefile
1 ############################################################################
2 #
3 #               This is the top-level Makefile for GHC
4 #
5 # Targets: 
6 #
7 #       bootstrap (DEFAULT)
8 #               Builds GHC, then builds the libraries,
9 #               then uses this GHC ("stage 1") to build itself
10 #               ("stage 2").
11 #
12 #       bootstrap2
13 #               Same as bootstrap
14 #
15 #       bootstrap3
16 #               bootstrap2 + we build GHC one more time ("stage 3")
17 #
18 #       stage1
19 #               Just build up to stage 1
20 #
21 #       stage2
22 #               Just build stage 2 (stage 1 must be built)
23 #
24 #       stage3
25 #               Just build stage 3 (stage 2 must be built)
26 #
27 #       all
28 #               Same as bootstrap
29 #
30 #       install
31 #               Install everything, including stage 2 compiler by default
32 #               (override with stage=3, for example).
33 #
34 #       dist
35 #               Make a source dist (WARNING: runs 'make distclean' first)
36 #
37 #       binary-dist
38 #               Builds a binary distribution
39 #
40 #       hc-file-bundle
41 #               Builds an HC-file bundle, for bootstrapping
42 #
43 #       clean, distclean, maintainer-clean
44 #               Increasing levels of cleanliness
45 #
46 ############################################################################
47
48 TOP=.
49 include $(TOP)/mk/boilerplate.mk
50
51 #
52 # Order is important! It's e.g. necessary to descend into include/
53 # before the rest to have a config.h, etc.
54 #
55 # If we're booting from .hc files, swap the order
56 # we descend into subdirs - to boot utils must be before driver.
57 #
58 .PHONY: stage1 stage2 stage3 bootstrap bootstrap2 bootstrap3
59
60 # We can't 'make boot' in libraries until stage1 is built
61 ifeq "$(BootingFromHc)" "YES"
62 SUBDIRS_NOLIB = includes rts compat compiler docs utils driver
63 else
64 SUBDIRS_NOLIB = includes compat utils driver docs compiler rts
65 endif
66
67 SUBDIRS = $(SUBDIRS_NOLIB) libraries
68
69 # 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 'sh darcs-all get'?"; \
76              exit 1; \
77           fi \
78         done
79
80 stage1 : check-packages
81         $(MAKE) -C utils/mkdependC boot
82         @case '${MFLAGS}' in *-[ik]*) x_on_err=0;; *-r*[ik]*) x_on_err=0;; *) x_on_err=1;; esac; \
83         for i in $(SUBDIRS_NOLIB); do \
84           echo "------------------------------------------------------------------------"; \
85           echo "== $(MAKE) boot $(MFLAGS);"; \
86           echo " in $(shell pwd)/$$i"; \
87           echo "------------------------------------------------------------------------"; \
88           $(MAKE) --no-print-directory -C $$i $(MFLAGS) boot; \
89           if [ $$? -eq 0 -o $$x_on_err -eq 0 ] ;  then true; else exit 1; fi; \
90         done; \
91         for i in $(SUBDIRS_NOLIB); do \
92           echo "------------------------------------------------------------------------"; \
93           echo "== $(MAKE) all $(MFLAGS);"; \
94           echo " in $(shell pwd)/$$i"; \
95           echo "------------------------------------------------------------------------"; \
96           $(MAKE) --no-print-directory -C $$i $(MFLAGS) all; \
97           if [ $$? -eq 0 -o $$x_on_err -eq 0 ] ;  then true; else exit 1; fi; \
98         done
99         @$(MAKE) -C libraries boot
100         @$(MAKE) -C libraries all
101
102 stage2 : check-packages
103         $(MAKE) -C compiler boot stage=2
104         $(MAKE) -C compiler stage=2
105
106 stage3 : check-packages
107         $(MAKE) -C compiler boot stage=3
108         $(MAKE) -C compiler stage=3
109
110 bootstrap  : bootstrap2
111
112 bootstrap2 : stage1
113         $(MAKE) stage2
114
115 bootstrap3 : bootstrap2
116         $(MAKE) stage3
117
118 all :: bootstrap
119
120 # -----------------------------------------------------------------------------
121 # Installing
122
123 # We want to install the stage 2 bootstrapped compiler by default, but we let
124 # the user override this by saying 'make install stage=1', for example.
125 ifeq "$(stage)" ""
126 INSTALL_STAGE = stage=2
127 else
128 INSTALL_STAGE =
129 endif
130
131 # Same as default rule, but we pass $(INSTALL_STAGE) to $(MAKE) too
132 install :: check-packages
133         @case '${MFLAGS}' in *-[ik]*) x_on_err=0;; *-r*[ik]*) x_on_err=0;; *) x_on_err=1;; esac; \
134         for i in $(SUBDIRS); do \
135           echo "------------------------------------------------------------------------"; \
136           echo "== $(MAKE) $@ $(MFLAGS);"; \
137           echo " in $(shell pwd)/$$i"; \
138           echo "------------------------------------------------------------------------"; \
139           $(MAKE) --no-print-directory -C $$i $(INSTALL_STAGE) $(MFLAGS) $@; \
140           if [ $$? -eq 0 -o $$x_on_err -eq 0 ] ;  then true; else exit 1; fi; \
141         done
142
143 ifeq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
144 # These files need to be in the InstallShield
145 # INSTALL_DATAS rather than INSTALL_DOCS is used so these files go
146 # in the top-level directory of the distribution
147 INSTALL_DATAS += ANNOUNCE LICENSE README
148 endif
149
150 # If installing on Windows with MinGW32, copy the gcc compiler, headers and libs
151 # and the perl interpreter and dll into the GHC prefix directory.
152 # Gcc and Perl source locations derived from configuration data.
153 ifeq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
154 ifneq "$(WhatGccIsCalled)" ""
155 install ::
156         -mkdir $(prefix)/gcc-lib
157         -mkdir $(prefix)/include
158         -mkdir $(prefix)/include/mingw
159         -cp -rp $(GccDir)../include/* $(prefix)/include/mingw
160         -cp -rp $(GccDir)../lib/gcc-lib/mingw32/$(GccVersion)/* $(prefix)/gcc-lib
161         -cp -rp $(GccDir)../lib/gcc/mingw32/$(GccVersion)/* $(prefix)/gcc-lib
162         -cp -rp $(GccDir)../libexec/gcc/mingw32/$(GccVersion)/* $(prefix)/gcc-lib
163         -cp $(GccDir)../lib/*.* $(prefix)/gcc-lib
164         -cp $(GccDir)gcc.exe $(prefix)
165         -cp $(GccDir)as.exe $(prefix)/gcc-lib
166         -cp $(GccDir)ld.exe $(prefix)/gcc-lib
167         -cp $(GccDir)dllwrap.exe $(prefix)/gcc-lib
168         -cp $(GccDir)dlltool.exe $(prefix)/gcc-lib
169         -cp $(GhcDir)../perl.exe $(prefix)
170         -cp $(GhcDir)../perl56.dll $(prefix)
171 endif
172 endif
173
174 install-docs ::
175         @case '${MFLAGS}' in *-[ik]*) x_on_err=0;; *-r*[ik]*) x_on_err=0;; *) x_on_err=1;; esac; \
176         for i in $(SUBDIRS); do \
177           echo "------------------------------------------------------------------------"; \
178           echo "== $(MAKE) $@ $(MFLAGS);"; \
179           echo " in $(shell pwd)/$$i"; \
180           echo "------------------------------------------------------------------------"; \
181           $(MAKE) --no-print-directory -C $$i $(INSTALL_STAGE) $(MFLAGS) $@; \
182           if [ $$? -eq 0 -o $$x_on_err -eq 0 ] ;  then true; else exit 1; fi; \
183         done
184
185 # -----------------------------------------------------------------------------
186 # Making a binary distribution
187 #
188 # `dist' `binary-dist'
189 #      Create a distribution tar file for this program. The tar file
190 #      should be set up so that the file names in the tar file start with
191 #      a subdirectory name which is the name of the package it is a
192 #      distribution for. This name can include the version number.
193 #
194 #      For example, the distribution tar file of GCC version 1.40 unpacks
195 #      into a subdirectory named `gcc-1.40'.
196
197 #      The easiest way to do this is to create a subdirectory
198 #      appropriately named, use ln or cp to install the proper files in
199 #      it, and then tar that subdirectory.
200
201 #      The dist target should explicitly depend on all non-source files
202 #      that are in the distribution, to make sure they are up to date in
203 #      the distribution. See Making Releases.
204 #
205 #       binary-dist is a GHC addition for binary distributions
206
207
208 ifneq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
209 BinDistShScripts = ghc-$(ProjectVersion) ghci-$(ProjectVersion) ghc-pkg-$(ProjectVersion) hsc2hs
210 else
211 BinDistShScripts =
212 endif
213
214 BinDistPrlScripts = ghcprof
215 BinDistLibPrlScripts = ghc-asm ghc-split
216 BinDistBins = hp2ps runghc
217 BinDistOptBins = runhaskell
218 BinDistLinks = ghc ghci ghc-pkg
219 BinDistLibSplicedFiles = package.conf
220 BinDistDirs = includes compiler docs driver libraries rts utils
221
222 BIN_DIST_NAME=ghc-$(ProjectVersion)
223 BIN_DIST_TOPDIR=$(FPTOOLS_TOP_ABS)
224 BIN_DIST_DIR=$(BIN_DIST_TOPDIR)/$(BIN_DIST_NAME)
225
226 BIN_DIST_TARBALL=ghc-$(ProjectVersion)-$(TARGETPLATFORM).tar.bz2
227
228 BIN_DIST_TOP= distrib/Makefile-bin.in \
229               distrib/configure-bin.ac \
230               distrib/INSTALL \
231               distrib/README \
232               ANNOUNCE \
233               LICENSE \
234               utils/mkdirhier/mkdirhier \
235               install-sh \
236               config.guess \
237               config.sub   \
238               aclocal.m4
239
240 ifeq "$(darwin_TARGET_OS)" "1"
241 BIN_DIST_TOP+=mk/fix_install_names.sh
242 endif
243
244 .PHONY: binary-dist-pre binary-dist binary-pack
245
246 binary-dist:: binary-dist-pre
247
248 binary-dist-pre::
249 ifeq "$(BIN_DIST)" ""
250         @echo "WARNING: To run the binary-dist target, you need to set BIN_DIST=1 in mk/build.mk" && exit 1
251 endif
252         -rm -rf $(BIN_DIST_DIR)
253         -$(RM) $(BIN_DIST_DIR).tar.gz
254         @for i in $(BinDistDirs); do                     \
255           if test -d "$$i"; then                         \
256            echo $(MKDIRHIER) $(BIN_DIST_DIR)/bin/$(TARGETPLATFORM); \
257            $(MKDIRHIER) $(BIN_DIST_DIR)/bin/$(TARGETPLATFORM); \
258            echo $(MKDIRHIER) $(BIN_DIST_DIR)/lib/$(TARGETPLATFORM); \
259            $(MKDIRHIER) $(BIN_DIST_DIR)/lib/$(TARGETPLATFORM); \
260            echo $(MKDIRHIER) $(BIN_DIST_DIR)/share; \
261            $(MKDIRHIER) $(BIN_DIST_DIR)/share; \
262            echo $(MAKE) -C $$i $(MFLAGS) $(INSTALL_STAGE) install \
263                 prefix=$(BIN_DIST_DIR) \
264                 exec_prefix=$(BIN_DIST_DIR) \
265                 bindir=$(BIN_DIST_DIR)/bin/$(TARGETPLATFORM) \
266                 libdir=$(BIN_DIST_DIR)/lib/$(TARGETPLATFORM) \
267                 libexecdir=$(BIN_DIST_DIR)/lib/$(TARGETPLATFORM) \
268                 datadir=$(BIN_DIST_DIR)/share; \
269            $(MAKE) -C $$i $(MFLAGS) $(INSTALL_STAGE) install \
270                 prefix=$(BIN_DIST_DIR) \
271                 exec_prefix=$(BIN_DIST_DIR) \
272                 bindir=$(BIN_DIST_DIR)/bin/$(TARGETPLATFORM) \
273                 libdir=$(BIN_DIST_DIR)/lib/$(TARGETPLATFORM) \
274                 libexecdir=$(BIN_DIST_DIR)/lib/$(TARGETPLATFORM) \
275                 datadir=$(BIN_DIST_DIR)/share; \
276           fi; \
277         done
278
279 binary-dist::
280         @for i in $(BIN_DIST_TOP); do \
281           if test -f "$$i"; then \
282              echo cp $$i $(BIN_DIST_DIR); \
283              cp $$i $(BIN_DIST_DIR); \
284           fi; \
285         done;
286         @echo "Configuring the Makefile for this project..."
287         touch $(BIN_DIST_DIR)/Makefile.in
288         echo "package = ghc" >> $(BIN_DIST_DIR)/Makefile.in
289         echo "version = $(ProjectVersion)" >> $(BIN_DIST_DIR)/Makefile.in
290         echo "PACKAGE_SH_SCRIPTS = $(BinDistShScripts)" >> $(BIN_DIST_DIR)/Makefile.in
291         echo "PACKAGE_PRL_SCRIPTS = $(BinDistPrlScripts)" >> $(BIN_DIST_DIR)/Makefile.in
292         echo "PACKAGE_LIB_PRL_SCRIPTS = $(BinDistLibPrlScripts)" >> $(BIN_DIST_DIR)/Makefile.in
293         echo "PACKAGE_LIB_SPLICED_FILES = $(BinDistLibSplicedFiles)" >> $(BIN_DIST_DIR)/Makefile.in
294         echo "PACKAGE_BINS = $(BinDistBins)" >> $(BIN_DIST_DIR)/Makefile.in
295         echo "PACKAGE_OPT_BINS = $(BinDistOptBins)" >> $(BIN_DIST_DIR)/Makefile.in
296         echo "PACKAGE_LINKS = $(BinDistLinks)" >> $(BIN_DIST_DIR)/Makefile.in
297         cat $(BIN_DIST_DIR)/Makefile-bin.in >> $(BIN_DIST_DIR)/Makefile.in
298         @echo "Generating a shippable configure script.."
299         $(MV) $(BIN_DIST_DIR)/configure-bin.ac $(BIN_DIST_DIR)/configure.ac
300         ( cd $(BIN_DIST_DIR); autoconf )
301 #
302 # binary dist'ing the documentation.  
303 # The default documentation to build/install is given below; overrideable
304 # via build.mk or the 'make' command-line.
305
306 ifndef BINDIST_DOC_WAYS
307
308 ifneq "$(XSLTPROC)" ""
309 BINDIST_DOC_WAYS = html
310 ifneq "$(FOP)" ""
311 BINDIST_DOC_WAYS += ps pdf
312 else
313 ifneq "$(PDFXMLTEX)" ""
314 BINDIST_DOC_WAYS += pdf
315 endif
316 ifneq "$(XMLTEX)" ""
317 ifneq "$(DVIPS)" ""
318 BINDIST_DOC_WAYS += ps
319 endif # DVIPS
320 endif # XMLTEX
321 endif # FOP
322 endif # XSLTPROC
323
324 endif # BINDIST_DOC_WAYS
325
326 binary-dist ::
327 ifneq "$(DIR_DOCBOOK_XSL)" ""
328         @for i in $(BinDistDirs); do                            \
329           if test -d "$$i"; then                                \
330             $(MAKE) -C $$i $(MFLAGS) $(BINDIST_DOC_WAYS);       \
331             echo $(MAKE) -C $$i $(MFLAGS) install-docs XMLDocWays="$(BINDIST_DOC_WAYS)" \
332                 prefix=$(BIN_DIST_DIR)  \
333                 exec_prefix=$(BIN_DIST_DIR) \
334                 bindir=$(BIN_DIST_DIR)/bin/$(TARGETPLATFORM) \
335                 libdir=$(BIN_DIST_DIR)/lib/$(TARGETPLATFORM) \
336                 libexecdir=$(BIN_DIST_DIR)/lib/$(TARGETPLATFORM) \
337                 datadir=$(BIN_DIST_DIR)/share; \
338             $(MAKE) -C $$i $(MFLAGS) install-docs XMLDocWays="$(BINDIST_DOC_WAYS)" \
339                 prefix=$(BIN_DIST_DIR)  \
340                 exec_prefix=$(BIN_DIST_DIR) \
341                 bindir=$(BIN_DIST_DIR)/bin/$(TARGETPLATFORM) \
342                 libdir=$(BIN_DIST_DIR)/lib/$(TARGETPLATFORM) \
343                 libexecdir=$(BIN_DIST_DIR)/lib/$(TARGETPLATFORM) \
344                 datadir=$(BIN_DIST_DIR)/share; \
345           fi \
346         done
347 endif
348
349 # Rename scripts to $i.prl and $i.sh where necessary.
350 # ToDo: do this in a cleaner way...
351
352 ifneq "$(BinDistPrlScripts)" ""
353 binary-dist::
354         @for i in $(BinDistPrlScripts); do \
355              echo "Renaming $$i to $$i.prl"; \
356             $(MV) $(BIN_DIST_DIR)/bin/$(TARGETPLATFORM)/$$i  $(BIN_DIST_DIR)/bin/$(TARGETPLATFORM)/$$i.prl; \
357         done
358 endif
359
360 ifneq "$(BinDistLibPrlScripts)" ""
361 binary-dist::
362         @for i in $(BinDistLibPrlScripts); do \
363              echo "Renaming $$i to $$i.prl"; \
364             $(MV) $(BIN_DIST_DIR)/lib/$(TARGETPLATFORM)/$$i  $(BIN_DIST_DIR)/lib/$(TARGETPLATFORM)/$$i.prl; \
365         done
366 endif
367
368 ifneq "$(BinDistShScripts)" ""
369 binary-dist::
370         @for i in $(BinDistShScripts); do \
371             if test -x $(BIN_DIST_DIR)/bin/$(TARGETPLATFORM)/$$i ; then \
372                 echo "Renaming $$i to $$i.sh"; \
373                 $(MV) $(BIN_DIST_DIR)/bin/$(TARGETPLATFORM)/$$i  $(BIN_DIST_DIR)/bin/$(TARGETPLATFORM)/$$i.sh; \
374             fi \
375         done
376 endif
377
378 # Tar up the distribution and build a manifest
379 binary-dist ::
380         ( cd $(BIN_DIST_TOPDIR); tar cf - $(BIN_DIST_NAME) | bzip2 >$(BIN_DIST_TARBALL) )
381         ( cd $(BIN_DIST_TOPDIR); bunzip2 -c $(BIN_DIST_TARBALL) | tar tf - | sed "s/^ghc-$(ProjectVersion)/fptools/" | sort >bin-manifest-$(ProjectVersion) )
382
383 # Upload the distribution and documentation
384 ifneq "$(PublishLocation)" ""
385 binary-dist ::
386         @for i in 0 1 2 3 4 5 6 7 8 9; do \
387                 echo "Try $$i: $(PublishCp) $(BIN_DIST_TARBALL) $(PublishLocation)"; \
388                 if $(PublishCp) $(BIN_DIST_TARBALL) $(PublishLocation); then break; fi\
389         done
390         $(PublishCp) -r $(BIN_DIST_DIR)/share/html/* $(PublishLocation)/docs
391 endif
392
393
394 binary-dist::
395         @echo "Mechanical and super-natty! Inspect the result and *if* happy; freeze, sell and get some sleep!"
396
397 # -----------------------------------------------------------------------------
398 # Building source distributions
399 #
400 # Do it like this: 
401 #
402 #       $ make
403 #       $ make dist
404 #
405 # WARNING: `make dist' calls `make distclean' before tarring up the tree.
406 #
407
408 .PHONY: dist
409
410 #
411 # Directory in which we're going to build the src dist
412 #
413 SRC_DIST_NAME=ghc-$(ProjectVersion)
414 SRC_DIST_DIR=$(shell pwd)/$(SRC_DIST_NAME)
415
416 #
417 # Files to include in source distributions
418 #
419 SRC_DIST_DIRS += mk docs distrib $(filter-out docs distrib,$(SUBDIRS))
420 SRC_DIST_FILES += \
421         configure.ac config.guess config.sub configure \
422         aclocal.m4 README ANNOUNCE HACKING LICENSE Makefile install-sh \
423         ghc.spec.in VERSION
424
425 # -----------------------------------------------------------------------------
426 # Source distributions
427
428 # A source dist is built from a complete build tree, because we
429 # require some extra files not contained in a darcs checkout: the
430 # output from Happy and Alex, for example.
431
432 # The steps performed by 'make dist' are as follows:
433 #   - create a complete link-tree of the current build tree in /tmp
434 #   - run 'make distclean' on that tree
435 #   - remove a bunch of other files that we know shouldn't be in the dist
436 #   - tar up first the extralibs package, then the main source package
437
438 EXTRA_LIBS=$(patsubst %, $(SRC_DIST_NAME)/libraries/%, $(shell cat libraries/extra-packages))
439
440 SRC_DIST_TARBALL = ghc-$(ProjectVersion)-src.tar.bz2
441 SRC_DIST_EXTRALIBS_TARBALL = ghc-$(ProjectVersion)-src-extralibs.tar.bz2
442
443 VERSION :
444         echo $(ProjectVersion) >VERSION
445
446 dist :: VERSION
447
448 dist ::
449         $(RM) -rf $(SRC_DIST_DIR)
450         $(RM) $(SRC_DIST_NAME).tar.gz
451         mkdir $(SRC_DIST_DIR)
452         ( cd $(SRC_DIST_DIR) \
453           && for i in $(SRC_DIST_DIRS); do mkdir $$i; (cd $$i && lndir $(FPTOOLS_TOP_ABS)/$$i ); done \
454           && for i in $(SRC_DIST_FILES); do $(LN_S) $(FPTOOLS_TOP_ABS)/$$i .; done \
455           && $(MAKE) distclean \
456           && $(RM) -rf compiler/stage[123] mk/build.mk \
457           && $(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 \
458         )
459         tar chf - $(EXTRA_LIBS) | bzip2 >$(FPTOOLS_TOP_ABS)/$(SRC_DIST_EXTRALIBS_TARBALL)
460         $(RM) -rf $(EXTRA_LIBS)
461         tar chf - $(SRC_DIST_NAME) 2>$src_log | bzip2 >$(FPTOOLS_TOP_ABS)/$(SRC_DIST_TARBALL)
462
463 # Upload the distribution(s)
464 # Retrying is to work around buggy firewalls that corrupt large file transfers
465 # over SSH.
466 ifneq "$(PublishLocation)" ""
467 dist ::
468         @for i in 0 1 2 3 4 5 6 7 8 9; do \
469                 echo "Try $$i: $(PublishCp) $(SRC_DIST_EXTRALIBS_TARBALL) $(PublishLocation)"; \
470                 if $(PublishCp) $(SRC_DIST_EXTRALIBS_TARBALL) $(PublishLocation); then break; fi\
471         done
472         @for i in 0 1 2 3 4 5 6 7 8 9; do \
473                 echo "Try $$i: $(PublishCp) $(SRC_DIST_TARBALL) $(PublishLocation)"; \
474                 if $(PublishCp) $(SRC_DIST_TARBALL) $(PublishLocation); then break; fi\
475         done
476 endif
477
478 # -----------------------------------------------------------------------------
479 # HC file bundles
480
481 hc-file-bundle :
482         $(RM) -r ghc-$(ProjectVersion)
483         $(LN_S) . ghc-$(ProjectVersion)
484         $(FIND) ghc-$(ProjectVersion)/compiler \
485              ghc-$(ProjectVersion)/utils \
486              ghc-$(ProjectVersion)/compat \
487              ghc-$(ProjectVersion)/libraries -follow \
488           \( -name "*.hc" -o -name "*_hsc.[ch]" -o -name "*_stub.[ch]" \) -print > hc-files-to-go
489         for f in `$(FIND) ghc-$(ProjectVersion)/compiler ghc-$(ProjectVersion)/utils ghc-$(ProjectVersion)/libraries -name "*.hsc" -follow -print` ""; do \
490              if test "x$$f" != "x" && test -e `echo "$$f" | sed 's/hsc$$/hs/g'`; then \
491                 echo `echo "$$f" | sed 's/hsc$$/hs/g' ` >> hc-files-to-go ; \
492              fi; \
493         done;
494         for f in `$(FIND) ghc-$(ProjectVersion)/compiler ghc-$(ProjectVersion)/rts -name "*.cmm" -follow -print` ""; do \
495              if test "x$$f" != "x"; then \
496                 echo `echo "$$f" | sed 's/cmm$$/hc/g' ` >> hc-files-to-go ; \
497              fi; \
498         done;
499         echo ghc-$(ProjectVersion)/libraries/base/GHC/PrimopWrappers.hs >> hc-files-to-go
500         echo ghc-$(ProjectVersion)/compiler/parser/Parser.hs >> hc-files-to-go
501         echo ghc-$(ProjectVersion)/compiler/parser/ParserCore.hs >> hc-files-to-go
502         echo ghc-$(ProjectVersion)/compiler/main/ParsePkgConf.hs >> hc-files-to-go
503         echo ghc-$(ProjectVersion)/libraries/haskell-src/Language/Haskell/Parser.hs >> hc-files-to-go
504         tar czf ghc-$(ProjectVersion)-$(TARGETPLATFORM)-hc.tar.gz `cat hc-files-to-go`
505
506 # -----------------------------------------------------------------------------
507 # Cleaning
508
509 CLEAN_FILES += hc-files-to-go *-hc.tar.gz
510
511 DIST_CLEAN_FILES += config.cache config.status mk/config.h mk/stamp-h \
512         ghc.spec docs/users_guide/ug-book.xml
513
514 # don't clean config.mk: it's needed when cleaning stuff later on
515 LATE_DIST_CLEAN_FILES += mk/config.mk 
516
517 # VERSION is shipped in a source dist
518 MAINTAINER_CLEAN_FILES += VERSION
519
520 extraclean::
521         $(RM) -rf autom4te.cache
522
523 # -----------------------------------------------------------------------------
524
525 # Turn off target.mk's rules for 'all', 'boot' and 'install'.
526 NO_BOOT_TARGET=YES
527 NO_ALL_TARGET=YES
528 NO_INSTALL_TARGET=YES
529
530 include $(TOP)/mk/target.mk
531
532 # -----------------------------------------------------------------------------
533