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