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