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