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