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