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