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