19c05a3dbaea080d12b77035887a2dd0f510af2f
[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
210 else
211 BinDistShScripts =
212 endif
213
214 BinDistPrlScripts = ghcprof
215 BinDistLibPrlScripts = ghc-asm ghc-split
216 BinDistBins = hp2ps runghc
217 BinDistOptBins = runhaskell
218 BinDistLinks = ghc ghci ghc-pkg
219 BinDistLibSplicedFiles = package.conf
220 BinDistDirs = includes compiler docs driver libraries rts utils
221
222 BIN_DIST_NAME=ghc-$(ProjectVersion)
223 BIN_DIST_TOPDIR=$(FPTOOLS_TOP_ABS)
224 BIN_DIST_DIR=$(BIN_DIST_TOPDIR)/$(BIN_DIST_NAME)
225
226 BIN_DIST_TARBALL=ghc-$(ProjectVersion)-$(TARGETPLATFORM).tar.bz2
227
228 BIN_DIST_TOP= distrib/Makefile-bin.in \
229               distrib/configure-bin.ac \
230               distrib/INSTALL \
231               distrib/README \
232               ANNOUNCE \
233               LICENSE \
234               utils/mkdirhier/mkdirhier \
235               install-sh \
236               config.guess \
237               config.sub   \
238               aclocal.m4
239
240 ifeq "$(darwin_TARGET_OS)" "1"
241 BIN_DIST_TOP+=mk/fix_install_names.sh
242 endif
243
244 .PHONY: binary-dist-pre% binary-dist binary-pack
245
246 BINARY_DIST_PRE_RULES=$(foreach d,$(BinDistDirs),binary-dist-pre-$d)
247
248 binary-dist:: binary-dist-pre $(BINARY_DIST_PRE_RULES)
249
250 binary-dist-pre::
251 ifeq "$(BIN_DIST)" ""
252         @echo "WARNING: To run the binary-dist target, you need to set BIN_DIST=1 in mk/build.mk"
253         @false
254 endif
255         -rm -rf $(BIN_DIST_DIR)
256         -$(RM) $(BIN_DIST_DIR).tar.gz
257         $(MKDIRHIER) $(BIN_DIST_DIR)/bin/$(TARGETPLATFORM)
258         $(MKDIRHIER) $(BIN_DIST_DIR)/lib/$(TARGETPLATFORM)
259         $(MKDIRHIER) $(BIN_DIST_DIR)/share
260
261 $(BINARY_DIST_PRE_RULES): binary-dist-pre-%:
262         $(MAKE) -C $* $(MFLAGS) $(INSTALL_STAGE) install \
263                 prefix=$(BIN_DIST_DIR) \
264                 exec_prefix=$(BIN_DIST_DIR) \
265                 bindir=$(BIN_DIST_DIR)/bin/$(TARGETPLATFORM) \
266                 libdir=$(BIN_DIST_DIR)/lib/$(TARGETPLATFORM) \
267                 libexecdir=$(BIN_DIST_DIR)/lib/$(TARGETPLATFORM) \
268                 datadir=$(BIN_DIST_DIR)/share
269
270 binary-dist::
271         @for i in $(BIN_DIST_TOP); do \
272           if test -f "$$i"; then \
273              echo cp $$i $(BIN_DIST_DIR); \
274              cp $$i $(BIN_DIST_DIR); \
275           fi; \
276         done;
277         @echo "Configuring the Makefile for this project..."
278         touch $(BIN_DIST_DIR)/Makefile.in
279         echo "package = ghc" >> $(BIN_DIST_DIR)/Makefile.in
280         echo "version = $(ProjectVersion)" >> $(BIN_DIST_DIR)/Makefile.in
281         echo "PACKAGE_SH_SCRIPTS = $(BinDistShScripts)" >> $(BIN_DIST_DIR)/Makefile.in
282         echo "PACKAGE_PRL_SCRIPTS = $(BinDistPrlScripts)" >> $(BIN_DIST_DIR)/Makefile.in
283         echo "PACKAGE_LIB_PRL_SCRIPTS = $(BinDistLibPrlScripts)" >> $(BIN_DIST_DIR)/Makefile.in
284         echo "PACKAGE_LIB_SPLICED_FILES = $(BinDistLibSplicedFiles)" >> $(BIN_DIST_DIR)/Makefile.in
285         echo "PACKAGE_BINS = $(BinDistBins)" >> $(BIN_DIST_DIR)/Makefile.in
286         echo "PACKAGE_OPT_BINS = $(BinDistOptBins)" >> $(BIN_DIST_DIR)/Makefile.in
287         echo "PACKAGE_LINKS = $(BinDistLinks)" >> $(BIN_DIST_DIR)/Makefile.in
288         cat $(BIN_DIST_DIR)/Makefile-bin.in >> $(BIN_DIST_DIR)/Makefile.in
289         @echo "Generating a shippable configure script.."
290         $(MV) $(BIN_DIST_DIR)/configure-bin.ac $(BIN_DIST_DIR)/configure.ac
291         ( cd $(BIN_DIST_DIR); autoconf )
292 #
293 # binary dist'ing the documentation.  
294 # The default documentation to build/install is given below; overrideable
295 # via build.mk or the 'make' command-line.
296
297 ifndef BINDIST_DOC_WAYS
298
299 ifneq "$(XSLTPROC)" ""
300 BINDIST_DOC_WAYS = html
301 ifneq "$(FOP)" ""
302 BINDIST_DOC_WAYS += ps pdf
303 else
304 ifneq "$(PDFXMLTEX)" ""
305 BINDIST_DOC_WAYS += pdf
306 endif
307 ifneq "$(XMLTEX)" ""
308 ifneq "$(DVIPS)" ""
309 BINDIST_DOC_WAYS += ps
310 endif # DVIPS
311 endif # XMLTEX
312 endif # FOP
313 endif # XSLTPROC
314
315 endif # BINDIST_DOC_WAYS
316
317 ifneq "$(DIR_DOCBOOK_XSL)" ""
318 .PHONY: binary-dist-doc-%
319
320 BINARY_DIST_DOC_RULES=$(foreach d,$(BinDistDirs),binary-dist-doc-$d)
321
322 binary-dist :: $(BINARY_DIST_DOC_RULES)
323
324 $(BINARY_DIST_DOC_RULES): binary-dist-doc-%:
325         $(MAKE) -C $* $(MFLAGS) $(BINDIST_DOC_WAYS)
326         $(MAKE) -C $* $(MFLAGS) install-docs \
327                 XMLDocWays="$(BINDIST_DOC_WAYS)" \
328                 prefix=$(BIN_DIST_DIR) \
329                 exec_prefix=$(BIN_DIST_DIR) \
330                 bindir=$(BIN_DIST_DIR)/bin/$(TARGETPLATFORM) \
331                 libdir=$(BIN_DIST_DIR)/lib/$(TARGETPLATFORM) \
332                 libexecdir=$(BIN_DIST_DIR)/lib/$(TARGETPLATFORM) \
333                 datadir=$(BIN_DIST_DIR)/share
334 endif
335
336 # Rename scripts to $i.prl and $i.sh where necessary.
337 # ToDo: do this in a cleaner way...
338
339 ifneq "$(BinDistPrlScripts)" ""
340 binary-dist::
341         @for i in $(BinDistPrlScripts); do \
342              echo "Renaming $$i to $$i.prl"; \
343             $(MV) $(BIN_DIST_DIR)/bin/$(TARGETPLATFORM)/$$i  $(BIN_DIST_DIR)/bin/$(TARGETPLATFORM)/$$i.prl; \
344         done
345 endif
346
347 ifneq "$(BinDistLibPrlScripts)" ""
348 binary-dist::
349         @for i in $(BinDistLibPrlScripts); do \
350              echo "Renaming $$i to $$i.prl"; \
351             $(MV) $(BIN_DIST_DIR)/lib/$(TARGETPLATFORM)/$$i  $(BIN_DIST_DIR)/lib/$(TARGETPLATFORM)/$$i.prl; \
352         done
353 endif
354
355 ifneq "$(BinDistShScripts)" ""
356 binary-dist::
357         @for i in $(BinDistShScripts); do \
358             if test -x $(BIN_DIST_DIR)/bin/$(TARGETPLATFORM)/$$i ; then \
359                 echo "Renaming $$i to $$i.sh"; \
360                 $(MV) $(BIN_DIST_DIR)/bin/$(TARGETPLATFORM)/$$i  $(BIN_DIST_DIR)/bin/$(TARGETPLATFORM)/$$i.sh; \
361             fi \
362         done
363 endif
364
365 # Tar up the distribution and build a manifest
366 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 # Upload the distribution and documentation
371 ifneq "$(PublishLocation)" ""
372 binary-dist ::
373         @for i in 0 1 2 3 4 5 6 7 8 9; do \
374                 echo "Try $$i: $(PublishCp) $(BIN_DIST_TARBALL) $(PublishLocation)"; \
375                 if $(PublishCp) $(BIN_DIST_TARBALL) $(PublishLocation); then break; fi\
376         done
377         $(PublishCp) -r $(BIN_DIST_DIR)/share/html/* $(PublishLocation)/docs
378 endif
379
380
381 binary-dist::
382         @echo "Mechanical and super-natty! Inspect the result and *if* happy; freeze, sell and get some sleep!"
383
384 # -----------------------------------------------------------------------------
385 # Building source distributions
386 #
387 # Do it like this: 
388 #
389 #       $ make
390 #       $ make dist
391 #
392 # WARNING: `make dist' calls `make distclean' before tarring up the tree.
393 #
394
395 .PHONY: dist
396
397 #
398 # Directory in which we're going to build the src dist
399 #
400 SRC_DIST_NAME=ghc-$(ProjectVersion)
401 SRC_DIST_DIR=$(shell pwd)/$(SRC_DIST_NAME)
402
403 #
404 # Files to include in source distributions
405 #
406 SRC_DIST_DIRS += mk docs distrib $(filter-out docs distrib,$(SUBDIRS))
407 SRC_DIST_FILES += \
408         configure.ac config.guess config.sub configure \
409         aclocal.m4 README ANNOUNCE HACKING LICENSE Makefile install-sh \
410         ghc.spec.in VERSION
411
412 # -----------------------------------------------------------------------------
413 # Source distributions
414
415 # A source dist is built from a complete build tree, because we
416 # require some extra files not contained in a darcs checkout: the
417 # output from Happy and Alex, for example.
418
419 # The steps performed by 'make dist' are as follows:
420 #   - create a complete link-tree of the current build tree in /tmp
421 #   - run 'make distclean' on that tree
422 #   - remove a bunch of other files that we know shouldn't be in the dist
423 #   - tar up first the extralibs package, then the main source package
424
425 EXTRA_LIBS=$(patsubst %, $(SRC_DIST_NAME)/libraries/%, $(shell cat libraries/extra-packages))
426
427 SRC_DIST_TARBALL = ghc-$(ProjectVersion)-src.tar.bz2
428 SRC_DIST_EXTRALIBS_TARBALL = ghc-$(ProjectVersion)-src-extralibs.tar.bz2
429
430 VERSION :
431         echo $(ProjectVersion) >VERSION
432
433 dist :: VERSION
434
435 dist ::
436         $(RM) -rf $(SRC_DIST_DIR)
437         $(RM) $(SRC_DIST_NAME).tar.gz
438         mkdir $(SRC_DIST_DIR)
439         ( cd $(SRC_DIST_DIR) \
440           && for i in $(SRC_DIST_DIRS); do mkdir $$i; (cd $$i && lndir $(FPTOOLS_TOP_ABS)/$$i ); done \
441           && for i in $(SRC_DIST_FILES); do $(LN_S) $(FPTOOLS_TOP_ABS)/$$i .; done \
442           && $(MAKE) distclean \
443           && $(RM) -rf compiler/stage[123] mk/build.mk \
444           && $(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 \
445         )
446         tar chf - $(EXTRA_LIBS) | bzip2 >$(FPTOOLS_TOP_ABS)/$(SRC_DIST_EXTRALIBS_TARBALL)
447         $(RM) -rf $(EXTRA_LIBS)
448         tar chf - $(SRC_DIST_NAME) 2>$src_log | bzip2 >$(FPTOOLS_TOP_ABS)/$(SRC_DIST_TARBALL)
449
450 # Upload the distribution(s)
451 # Retrying is to work around buggy firewalls that corrupt large file transfers
452 # over SSH.
453 ifneq "$(PublishLocation)" ""
454 dist ::
455         @for i in 0 1 2 3 4 5 6 7 8 9; do \
456                 echo "Try $$i: $(PublishCp) $(SRC_DIST_EXTRALIBS_TARBALL) $(PublishLocation)"; \
457                 if $(PublishCp) $(SRC_DIST_EXTRALIBS_TARBALL) $(PublishLocation); then break; fi\
458         done
459         @for i in 0 1 2 3 4 5 6 7 8 9; do \
460                 echo "Try $$i: $(PublishCp) $(SRC_DIST_TARBALL) $(PublishLocation)"; \
461                 if $(PublishCp) $(SRC_DIST_TARBALL) $(PublishLocation); then break; fi\
462         done
463 endif
464
465 # -----------------------------------------------------------------------------
466 # HC file bundles
467
468 hc-file-bundle :
469         $(RM) -r ghc-$(ProjectVersion)
470         $(LN_S) . ghc-$(ProjectVersion)
471         $(FIND) ghc-$(ProjectVersion)/compiler \
472              ghc-$(ProjectVersion)/utils \
473              ghc-$(ProjectVersion)/compat \
474              ghc-$(ProjectVersion)/libraries -follow \
475           \( -name "*.hc" -o -name "*_hsc.[ch]" -o -name "*_stub.[ch]" \) -print > hc-files-to-go
476         for f in `$(FIND) ghc-$(ProjectVersion)/compiler ghc-$(ProjectVersion)/utils ghc-$(ProjectVersion)/libraries -name "*.hsc" -follow -print` ""; do \
477              if test "x$$f" != "x" && test -e `echo "$$f" | sed 's/hsc$$/hs/g'`; then \
478                 echo `echo "$$f" | sed 's/hsc$$/hs/g' ` >> hc-files-to-go ; \
479              fi; \
480         done;
481         for f in `$(FIND) ghc-$(ProjectVersion)/compiler ghc-$(ProjectVersion)/rts -name "*.cmm" -follow -print` ""; do \
482              if test "x$$f" != "x"; then \
483                 echo `echo "$$f" | sed 's/cmm$$/hc/g' ` >> hc-files-to-go ; \
484              fi; \
485         done;
486         echo ghc-$(ProjectVersion)/libraries/base/GHC/PrimopWrappers.hs >> hc-files-to-go
487         echo ghc-$(ProjectVersion)/compiler/parser/Parser.hs >> hc-files-to-go
488         echo ghc-$(ProjectVersion)/compiler/parser/ParserCore.hs >> hc-files-to-go
489         echo ghc-$(ProjectVersion)/compiler/main/ParsePkgConf.hs >> hc-files-to-go
490         echo ghc-$(ProjectVersion)/libraries/haskell-src/Language/Haskell/Parser.hs >> hc-files-to-go
491         tar czf ghc-$(ProjectVersion)-$(TARGETPLATFORM)-hc.tar.gz `cat hc-files-to-go`
492
493 # -----------------------------------------------------------------------------
494 # Cleaning
495
496 CLEAN_FILES += hc-files-to-go *-hc.tar.gz
497
498 DIST_CLEAN_FILES += config.cache config.status mk/config.h mk/stamp-h \
499         ghc.spec docs/users_guide/ug-book.xml
500
501 # don't clean config.mk: it's needed when cleaning stuff later on
502 LATE_DIST_CLEAN_FILES += mk/config.mk 
503
504 # VERSION is shipped in a source dist
505 MAINTAINER_CLEAN_FILES += VERSION
506
507 extraclean::
508         $(RM) -rf autom4te.cache
509
510 # -----------------------------------------------------------------------------
511
512 # Turn off target.mk's rules for 'all', 'boot' and 'install'.
513 NO_BOOT_TARGET=YES
514 NO_ALL_TARGET=YES
515 NO_INSTALL_TARGET=YES
516
517 include $(TOP)/mk/target.mk
518
519 # -----------------------------------------------------------------------------
520