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