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