Massive patch for the first months work adding System FC to GHC #16
[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 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_TMPDIR=$(FPTOOLS_TOP_ABS)
224
225 BIN_DIST_TOP= distrib/Makefile-bin.in \
226               distrib/configure-bin.ac \
227               distrib/INSTALL \
228               distrib/README \
229               ANNOUNCE \
230               LICENSE \
231               utils/mkdirhier/mkdirhier \
232               install-sh \
233               config.guess \
234               config.sub   \
235               aclocal.m4
236
237 ifeq "$(darwin_TARGET_OS)" "1"
238 BIN_DIST_TOP+=mk/fix_install_names.sh
239 endif
240
241 .PHONY: binary-dist-pre binary-dist binary-pack
242
243 binary-dist:: binary-dist-pre
244
245 binary-dist-pre::
246 ifeq "$(BIN_DIST)" ""
247         @echo "WARNING: To run the binary-dist target, you need to set BIN_DIST=1 in mk/build.mk" && exit 1
248 endif
249         -rm -rf $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)
250         -$(RM) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME).tar.gz
251         @for i in $(BinDistDirs); do                     \
252           if test -d "$$i"; then                         \
253            echo $(MKDIRHIER) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/bin/$(TARGETPLATFORM); \
254            $(MKDIRHIER) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/bin/$(TARGETPLATFORM); \
255            echo $(MKDIRHIER) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/lib/$(TARGETPLATFORM); \
256            $(MKDIRHIER) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/lib/$(TARGETPLATFORM); \
257            echo $(MKDIRHIER) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/share; \
258            $(MKDIRHIER) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/share; \
259            echo $(MAKE) -C $$i $(MFLAGS) $(INSTALL_STAGE) install \
260                 prefix=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME) \
261                 exec_prefix=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME) \
262                 bindir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/bin/$(TARGETPLATFORM) \
263                 libdir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/lib/$(TARGETPLATFORM) \
264                 libexecdir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/lib/$(TARGETPLATFORM) \
265                 datadir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/share; \
266            $(MAKE) -C $$i $(MFLAGS) $(INSTALL_STAGE) install \
267                 prefix=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME) \
268                 exec_prefix=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME) \
269                 bindir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/bin/$(TARGETPLATFORM) \
270                 libdir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/lib/$(TARGETPLATFORM) \
271                 libexecdir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/lib/$(TARGETPLATFORM) \
272                 datadir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/share; \
273           fi; \
274         done
275
276 binary-dist::
277         @for i in $(BIN_DIST_TOP); do \
278           if test -f "$$i"; then \
279              echo cp $$i $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME); \
280              cp $$i $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME); \
281           fi; \
282         done;
283         @echo "Configuring the Makefile for this project..."
284         touch $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/Makefile.in
285         echo "package = ghc" >> $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/Makefile.in
286         echo "version = $(ProjectVersion)" >> $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/Makefile.in
287         echo "PACKAGE_SH_SCRIPTS = $(BinDistShScripts)" >> $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/Makefile.in
288         echo "PACKAGE_PRL_SCRIPTS = $(BinDistPrlScripts)" >> $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/Makefile.in
289         echo "PACKAGE_LIB_PRL_SCRIPTS = $(BinDistLibPrlScripts)" >> $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/Makefile.in
290         echo "PACKAGE_LIB_SPLICED_FILES = $(BinDistLibSplicedFiles)" >> $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/Makefile.in
291         echo "PACKAGE_BINS = $(BinDistBins)" >> $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/Makefile.in
292         echo "PACKAGE_OPT_BINS = $(BinDistOptBins)" >> $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/Makefile.in
293         echo "PACKAGE_LINKS = $(BinDistLinks)" >> $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/Makefile.in
294         cat $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/Makefile-bin.in >> $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/Makefile.in
295         @echo "Generating a shippable configure script.."
296         $(MV) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/configure-bin.ac $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/configure.ac
297         ( cd $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME); autoconf )
298 #
299 # binary dist'ing the documentation.  
300 # The default documentation to build/install is given below; overrideable
301 # via build.mk or the 'make' command-line.
302
303 ifndef BINDIST_DOC_WAYS
304
305 ifneq "$(XSLTPROC)" ""
306 BINDIST_DOC_WAYS = html
307 ifneq "$(FOP)" ""
308 BINDIST_DOC_WAYS += ps pdf
309 else
310 ifneq "$(PDFXMLTEX)" ""
311 BINDIST_DOC_WAYS += pdf
312 endif
313 ifneq "$(XMLTEX)" ""
314 ifneq "$(DVIPS)" ""
315 BINDIST_DOC_WAYS += ps
316 endif # DVIPS
317 endif # XMLTEX
318 endif # FOP
319 endif # XSLTPROC
320
321 endif # BINDIST_DOC_WAYS
322
323 binary-dist ::
324 ifneq "$(DIR_DOCBOOK_XSL)" ""
325         @for i in $(BinDistDirs); do                            \
326           if test -d "$$i"; then                                \
327             $(MAKE) -C $$i $(MFLAGS) $(BINDIST_DOC_WAYS);       \
328             echo $(MAKE) -C $$i $(MFLAGS) install-docs XMLDocWays="$(BINDIST_DOC_WAYS)" \
329                 prefix=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)      \
330                 exec_prefix=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME) \
331                 bindir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/bin/$(TARGETPLATFORM) \
332                 libdir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/lib/$(TARGETPLATFORM) \
333                 libexecdir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/lib/$(TARGETPLATFORM) \
334                 datadir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/share; \
335             $(MAKE) -C $$i $(MFLAGS) install-docs XMLDocWays="$(BINDIST_DOC_WAYS)" \
336                 prefix=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)      \
337                 exec_prefix=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME) \
338                 bindir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/bin/$(TARGETPLATFORM) \
339                 libdir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/lib/$(TARGETPLATFORM) \
340                 libexecdir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/lib/$(TARGETPLATFORM) \
341                 datadir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/share; \
342           fi \
343         done
344 endif
345
346 # Rename scripts to $i.prl and $i.sh where necessary.
347 # ToDo: do this in a cleaner way...
348
349 ifneq "$(BinDistPrlScripts)" ""
350 binary-dist::
351         @for i in $(BinDistPrlScripts); do \
352              echo "Renaming $$i to $$i.prl"; \
353             $(MV) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/bin/$(TARGETPLATFORM)/$$i  $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/bin/$(TARGETPLATFORM)/$$i.prl; \
354         done
355 endif
356
357 ifneq "$(BinDistLibPrlScripts)" ""
358 binary-dist::
359         @for i in $(BinDistLibPrlScripts); do \
360              echo "Renaming $$i to $$i.prl"; \
361             $(MV) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/lib/$(TARGETPLATFORM)/$$i  $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/lib/$(TARGETPLATFORM)/$$i.prl; \
362         done
363 endif
364
365 ifneq "$(BinDistShScripts)" ""
366 binary-dist::
367         @for i in $(BinDistShScripts); do \
368             if test -x $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/bin/$(TARGETPLATFORM)/$$i ; then \
369                 echo "Renaming $$i to $$i.sh"; \
370                 $(MV) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/bin/$(TARGETPLATFORM)/$$i  $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/bin/$(TARGETPLATFORM)/$$i.sh; \
371             fi \
372         done
373 endif
374
375 #
376 # Do this separately for now
377
378 binary-pack::
379         ( cd $(BIN_DIST_TMPDIR); $(TAR) chzf $(BIN_DIST_NAME).tar.gz $(BIN_DIST_NAME) )
380
381 ifneq "$(way)" ""
382 .PHONY: package-way-dist
383 package-way-dist::
384         ( 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 )
385         gzip $(BIN_DIST_TMPDIR)/ghc-$(ProjectVersion)-$(way)-$(TARGETPLATFORM).tar
386 endif
387
388 ifneq "$(way)" ""
389 remove-way-dist::
390         ( cd $(BIN_DIST_TMPDIR); $(FIND) $(BIN_DIST_NAME)/ \( -name "*$(_way).a" -o -name "*.$(way_)hi" \) -print -exec $(RM) {} \; )
391 endif
392
393 binary-dist::
394         @echo "Mechanical and super-natty! Inspect the result and *if* happy; freeze, sell and get some sleep!"
395
396 # -----------------------------------------------------------------------------
397 # Building source distributions
398 #
399 # Do it like this: 
400 #
401 #       $ make
402 #       $ make dist
403 #
404 # WARNING: `make dist' calls `make distclean' before tarring up the tree.
405 #
406
407 .PHONY: dist
408
409 #
410 # Directory in which we're going to build the src dist
411 #
412 SRC_DIST_NAME=ghc-$(ProjectVersion)
413 SRC_DIST_DIR=$(shell pwd)/$(SRC_DIST_NAME)
414
415 #
416 # Files to include in source distributions
417 #
418 SRC_DIST_DIRS += docs distrib $(filter-out docs distrib,$(SUBDIRS))
419 SRC_DIST_FILES += \
420         configure.ac config.guess config.sub configure \
421         aclocal.m4 README ANNOUNCE HACKING LICENSE Makefile install-sh \
422         ghc.spec.in mk/bootstrap.mk \
423         mk/boilerplate.mk mk/config.h.in mk/config.mk.in mk/opts.mk \
424         mk/paths.mk mk/package.mk mk/suffix.mk mk/target.mk \
425         mk/fptools.css mk/fix_install_names.sh
426
427 # clean the tree first, leaving certain extra files in place (eg. configure)
428 dist :: distclean
429
430 dist ::
431         -rm -rf $(SRC_DIST_DIR)
432         -$(RM) $(SRC_DIST_NAME).tar.gz
433         mkdir $(SRC_DIST_DIR)
434         mkdir $(SRC_DIST_DIR)/mk
435         $(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
436         $(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
437
438 # Automatic generation of a MANIFEST file for a source distribution
439 # tree that is ready to go.
440 dist-manifest ::
441         cd $(SRC_DIST_DIR); $(FIND) . \( -type l -o -type f \) -exec ls -lLG {} \; | sed -e 's/\.\///' > MANIFEST
442
443 dist-package :: dist-package-tar-gz
444
445 SRC_DIST_PATHS = $(patsubst %, $(SRC_DIST_NAME)/%, $(SRC_DIST_FILES) $(SRC_DIST_DIRS))
446
447 dist-package-tar-bz2 ::
448         BZIP2=-9 $(TAR) chjf $(SRC_DIST_NAME)-src.tar.bz2 $(SRC_DIST_NAME) || $(RM) $(SRC_DIST_NAME)-src.tar.bz2
449
450 dist-package-tar-gz ::
451         $(TAR) chzf $(SRC_DIST_NAME)-src.tar.gz $(SRC_DIST_NAME) || $(RM) $(SRC_DIST_NAME)-src.tar.gz
452
453 dist-package-zip ::
454         cd ..; $(LN_S) $(FPTOOLS_TOP_ABS) $(SRC_DIST_NAME) && \
455                $(ZIP) $(ZIP_OPTS) -r $(SRC_DIST_NAME)-src.zip $(SRC_DIST_PATHS)
456
457 # -----------------------------------------------------------------------------
458 # HC file bundles
459
460 hc-file-bundle :
461         $(RM) -r ghc-$(ProjectVersion)
462         $(LN_S) . ghc-$(ProjectVersion)
463         $(FIND) ghc-$(ProjectVersion)/compiler \
464              ghc-$(ProjectVersion)/utils \
465              ghc-$(ProjectVersion)/compat \
466              ghc-$(ProjectVersion)/libraries -follow \
467           \( -name "*.hc" -o -name "*_hsc.[ch]" -o -name "*_stub.[ch]" \) -print > hc-files-to-go
468         for f in `$(FIND) ghc-$(ProjectVersion)/compiler ghc-$(ProjectVersion)/utils ghc-$(ProjectVersion)/libraries -name "*.hsc" -follow -print` ""; do \
469              if test "x$$f" != "x" && test -e `echo "$$f" | sed 's/hsc$$/hs/g'`; then \
470                 echo `echo "$$f" | sed 's/hsc$$/hs/g' ` >> hc-files-to-go ; \
471              fi; \
472         done;
473         for f in `$(FIND) ghc-$(ProjectVersion)/compiler ghc-$(ProjectVersion)/rts -name "*.cmm" -follow -print` ""; do \
474              if test "x$$f" != "x"; then \
475                 echo `echo "$$f" | sed 's/cmm$$/hc/g' ` >> hc-files-to-go ; \
476              fi; \
477         done;
478         echo ghc-$(ProjectVersion)/libraries/base/GHC/PrimopWrappers.hs >> hc-files-to-go
479         echo ghc-$(ProjectVersion)/compiler/parser/Parser.hs >> hc-files-to-go
480         echo ghc-$(ProjectVersion)/compiler/parser/ParserCore.hs >> hc-files-to-go
481         echo ghc-$(ProjectVersion)/compiler/main/ParsePkgConf.hs >> hc-files-to-go
482         echo ghc-$(ProjectVersion)/libraries/haskell-src/Language/Haskell/Parser.hs >> hc-files-to-go
483         tar czf ghc-$(ProjectVersion)-$(TARGETPLATFORM)-hc.tar.gz `cat hc-files-to-go`
484
485 # -----------------------------------------------------------------------------
486 # Cleaning
487
488 CLEAN_FILES += hc-files-to-go *-hc.tar.gz
489
490 DIST_CLEAN_FILES += config.cache config.status mk/config.h mk/stamp-h \
491         ghc.spec docs/users_guide/ug-book.xml
492
493 # don't clean config.mk: it's needed when cleaning stuff later on
494 LATE_DIST_CLEAN_FILES += mk/config.mk 
495
496 extraclean::
497         $(RM) -rf autom4te.cache
498
499 # -----------------------------------------------------------------------------
500
501 # Turn off target.mk's rules for 'all', 'boot' and 'install'.
502 NO_BOOT_TARGET=YES
503 NO_ALL_TARGET=YES
504 NO_INSTALL_TARGET=YES
505
506 include $(TOP)/mk/target.mk
507
508 # -----------------------------------------------------------------------------
509