[project @ 2005-04-29 22:02:46 by sof]
[ghc-hetmet.git] / Makefile
1 ############################################################################
2 #
3 #                       fptools/Makefile
4 #
5 #               This is the main Makefile for fptools.
6 #
7 ############################################################################
8
9 TOP=.
10 include $(TOP)/mk/boilerplate.mk
11
12 # find the projects that actually exist...
13 ProjectsThatExist = $(filter $(patsubst %/, %, $(wildcard */)), $(AllProjects))
14
15 # and filter only those that the user requested, if necessary
16 ifeq "$(ProjectsToBuild)" ""
17 SUBDIRS = $(ProjectsThatExist)
18 else
19 SUBDIRS = $(filter $(ProjectsToBuild), $(ProjectsThatExist))
20 endif
21
22 ifneq "$(Project)" ""
23    ifeq "$(Project)" "GreenCard"
24        ProjectDirectory=greencard
25    else
26         ifeq "$(Project)" "HaskellDirect"
27                 ProjectDirectory=hdirect
28         else
29                 ProjectDirectory=$(Project)
30         endif
31    endif
32    -include $(shell echo $(ProjectDirectory) | tr A-Z a-z)/mk/config.mk
33    -include $(shell echo $(ProjectDirectory) | tr A-Z a-z)/mk/version.mk
34 endif
35
36 # -----------------------------------------------------------------------------
37 # Certain targets require that Project is set from the command line.
38
39 CURRENT_TARGET = $(MAKECMDGOALS)
40 project-check :
41         @if [ "$(Project)" = "" ]; then \
42                 echo "  You need to set \"Project\" in order to make $(CURRENT_TARGET)"; \
43                 echo "  eg. make $(CURRENT_TARGET) Project=Ghc"; \
44                 exit 1; \
45         fi
46
47 # -----------------------------------------------------------------------------
48 # Targets: all, stage1, stage2, stage3
49
50 DIST_CLEAN_FILES += config.cache config.status mk/config.h mk/stamp-h
51
52 extraclean::
53         $(RM) -rf autom4te.cache
54
55 #
56 # If you've ended up using an in-place version of Happy,
57 # make sure it gets built early on.
58 #
59 ifeq "$(HAPPY)" "$(FPTOOLS_TOP_ABS)/happy/src/happy-inplace"
60 build :: $(FPTOOLS_TOP_ABS)/happy/src/happy-inplace
61
62 $(FPTOOLS_TOP_ABS)/happy/src/happy-inplace : glafp-utils
63         $(MAKE) -C happy boot all
64 endif
65
66 # Build all projects that we know about
67 build ::
68         @case '${MFLAGS}' in *-[ik]*) x_on_err=0;; *-r*[ik]*) x_on_err=0;; *) x_on_err=1;; esac; \
69         for i in $(SUBDIRS); do \
70            if [ -d $$i ]; then \
71               $(MAKE) -C $$i boot; \
72               if [ $$? -eq 0 -o $$x_on_err -eq 0 ] ;  then true; else exit 1; fi; \
73               $(MAKE) -C $$i all; \
74               if [ $$? -eq 0 -o $$x_on_err -eq 0 ] ;  then true; else exit 1; fi; \
75               fi; \
76         done
77
78 ifeq "$(findstring ghc, $(SUBDIRS))" "ghc"
79
80 .PHONY: stage1 stage2 stage3 bootstrap bootstrap2 bootstrap3
81
82 stage1 : build
83
84 stage2 :
85         $(MAKE) -C ghc/compiler boot stage=2
86         $(MAKE) -C ghc/compiler stage=2
87
88 stage3 :
89         $(MAKE) -C ghc/compiler boot stage=3
90         $(MAKE) -C ghc/compiler stage=3
91
92 bootstrap  : bootstrap2
93
94 bootstrap2 : stage1
95         $(MAKE) stage2
96
97 bootstrap3 : bootstrap2
98         $(MAKE) stage3
99
100 all :: bootstrap
101
102 # We want to install the stage 2 bootstrapped compiler by default, but we let
103 # the user override this by saying 'make install stage=1', for example.
104 ifeq "$(stage)" ""
105 INSTALL_STAGE = stage=2
106 else
107 INSTALL_STAGE =
108 endif
109
110 else # Not building GHC
111
112 all :: build
113
114 INSTALL_STAGE =
115
116 endif
117
118 boot ::
119         @echo "Please use \`make all' only from the top-level, or \`make boot' followed"
120         @echo "by \`make all' in an individual project subdirectory (ghc, hslibs etc.)."
121
122 install ::
123         @case '${MFLAGS}' in *-[ik]*) x_on_err=0;; *-r*[ik]*) x_on_err=0;; *) x_on_err=1;; esac; \
124         for i in $(filter-out $(ProjectsDontInstall), $(SUBDIRS)); do \
125            if [ -d $$i ]; then \
126               $(MAKE) -C $$i $(INSTALL_STAGE) install; \
127               if [ $$? -eq 0 -o $$x_on_err -eq 0 ] ;  then true; else exit 1; fi; \
128               fi; \
129         done
130
131 # If installing on Windows with MinGW32, copy the gcc compiler, headers and libs
132 # and the perl interpreter and dll into the GHC prefix directory.
133 # Gcc and Perl source locations derived from configuration data.
134 ifeq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
135 ifneq "$(WhatGccIsCalled)" ""
136 install ::
137         -mkdir $(prefix)/gcc-lib
138         -mkdir $(prefix)/include
139         -mkdir $(prefix)/include/mingw
140         -cp -rp $(GccDir)../include/* $(prefix)/include/mingw
141         -cp -rp $(GccDir)../lib/gcc-lib/mingw32/$(GccVersion)/* $(prefix)/gcc-lib
142         -cp $(GccDir)../lib/*.* $(prefix)/gcc-lib
143         -cp $(GccDir)gcc.exe $(prefix)
144         -cp $(GccDir)as.exe $(prefix)/gcc-lib
145         -cp $(GccDir)ld.exe $(prefix)/gcc-lib
146         -cp $(GccDir)dllwrap.exe $(prefix)/gcc-lib
147         -cp $(GccDir)dlltool.exe $(prefix)/gcc-lib
148         -cp $(GhcDir)../perl.exe $(prefix)
149         -cp $(GhcDir)../perl56.dll $(prefix)
150 endif
151 endif
152
153 install-docs ::
154         @case '${MFLAGS}' in *-[ik]*) x_on_err=0;; *-r*[ik]*) x_on_err=0;; *) x_on_err=1;; esac; \
155         for i in $(filter-out $(ProjectsDontInstall), $(SUBDIRS)); do \
156            if [ -d $$i ]; then \
157               $(MAKE) -C $$i $(INSTALL_STAGE) install-docs; \
158               if [ $$? -eq 0 -o $$x_on_err -eq 0 ] ;  then true; else exit 1; fi; \
159               fi; \
160         done
161
162 # -----------------------------------------------------------------------------
163 # Making a binary distribution
164 #
165 # To make a particular binary distribution: 
166 # set $(Project) to the name of the project, capitalised (eg. Ghc or Happy).
167
168 # `dist' `binary-dist'
169 #      Create a distribution tar file for this program. The tar file
170 #      should be set up so that the file names in the tar file start with
171 #      a subdirectory name which is the name of the package it is a
172 #      distribution for. This name can include the version number.
173 #
174 #      For example, the distribution tar file of GCC version 1.40 unpacks
175 #      into a subdirectory named `gcc-1.40'.
176
177 #      The easiest way to do this is to create a subdirectory
178 #      appropriately named, use ln or cp to install the proper files in
179 #      it, and then tar that subdirectory.
180
181 #      The dist target should explicitly depend on all non-source files
182 #      that are in the distribution, to make sure they are up to date in
183 #      the distribution. See Making Releases.
184 #
185 #       binary-dist is an FPtools addition for binary distributions
186
187
188 binary-dist :: project-check
189
190 BIN_DIST_TMPDIR=$(FPTOOLS_TOP_ABS)
191 BIN_DIST_NAME=$(ProjectNameShort)-$(ProjectVersion)
192
193 #
194 # list of toplevel directories to include in binary distrib.
195 #
196 BIN_DIST_MAIN_DIR=$($(Project)MainDir)
197 BIN_DIST_DIRS=$($(Project)BinDistDirs)
198
199 binary-dist:: binary-dist-pre
200
201 BIN_DIST_TOP= distrib/Makefile-bin.in \
202               distrib/configure-bin.ac \
203               distrib/INSTALL \
204               $(BIN_DIST_MAIN_DIR)/ANNOUNCE \
205               $(BIN_DIST_MAIN_DIR)/VERSION \
206               $(BIN_DIST_MAIN_DIR)/LICENSE \
207               $(BIN_DIST_MAIN_DIR)/README \
208               glafp-utils/mkdirhier/mkdirhier \
209               install-sh \
210               config.guess \
211               config.sub   \
212               aclocal.m4
213
214 ifeq "$(darwin_TARGET_OS)" "1"
215 BIN_DIST_TOP+=mk/fix_install_names.sh
216 endif
217
218 #
219 # binary-dist creates a binary bundle, set BIN_DIST_NAME
220 # to package name and do `make binary-dist Project=<project-name>'
221 # (normally this just a thing you would do from the toplevel of fptools)
222 #
223 .PHONY: binary-dist-pre binary-dist binary-pack
224
225 BIN_DIST_NAME=$(ProjectNameShort)-$(ProjectVersion)
226 BIN_DIST_TMPDIR=$(FPTOOLS_TOP_ABS)
227
228 binary-dist-pre::
229 ifeq "$(BIN_DIST)" ""
230         @echo "WARNING: To run the binary-dist target, you need to set BIN_DIST=1 in your build.mk" && exit 1
231 endif
232         -rm -rf $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)
233         -$(RM) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME).tar.gz
234         -echo "BIN_DIST_DIRS = $(BIN_DIST_DIRS)"
235         @for i in $(BIN_DIST_DIRS); do                   \
236           if test -d "$$i"; then                         \
237            echo $(MKDIRHIER) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/bin/$(TARGETPLATFORM); \
238            $(MKDIRHIER) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/bin/$(TARGETPLATFORM); \
239            echo $(MKDIRHIER) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/lib/$(TARGETPLATFORM); \
240            $(MKDIRHIER) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/lib/$(TARGETPLATFORM); \
241            echo $(MKDIRHIER) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/share; \
242            $(MKDIRHIER) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/share; \
243            echo $(MAKE) -C $$i $(MFLAGS) $(INSTALL_STAGE) install \
244                 prefix=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME) \
245                 exec_prefix=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME) \
246                 bindir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/bin/$(TARGETPLATFORM) \
247                 libdir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/lib/$(TARGETPLATFORM) \
248                 libexecdir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/lib/$(TARGETPLATFORM) \
249                 datadir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/share; \
250            $(MAKE) -C $$i $(MFLAGS) $(INSTALL_STAGE) install \
251                 prefix=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME) \
252                 exec_prefix=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME) \
253                 bindir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/bin/$(TARGETPLATFORM) \
254                 libdir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/lib/$(TARGETPLATFORM) \
255                 libexecdir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/lib/$(TARGETPLATFORM) \
256                 datadir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/share; \
257           fi; \
258         done
259
260 binary-dist::
261         @for i in $(BIN_DIST_TOP); do \
262           if test -f "$$i"; then \
263              echo cp $$i $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME); \
264              cp $$i $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME); \
265           fi; \
266         done;
267         @echo "Configuring the Makefile for this project..."
268         touch $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/Makefile.in
269         echo "package = $(ProjectNameShort)" >> $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/Makefile.in
270         echo "version = $(ProjectVersion)" >> $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/Makefile.in
271         echo "PACKAGE_SH_SCRIPTS = $($(Project)BinDistShScripts)" >> $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/Makefile.in
272         echo "PACKAGE_PRL_SCRIPTS = $($(Project)BinDistPrlScripts)" >> $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/Makefile.in
273         echo "PACKAGE_LIB_PRL_SCRIPTS = $($(Project)BinDistLibPrlScripts)" >> $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/Makefile.in
274         echo "PACKAGE_LIB_SPLICED_FILES = $($(Project)BinDistLibSplicedFiles)" >> $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/Makefile.in
275         echo "PACKAGE_BINS = $($(Project)BinDistBins)" >> $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/Makefile.in
276         echo "PACKAGE_OPT_BINS = $($(Project)BinDistOptBins)" >> $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/Makefile.in
277         echo "PACKAGE_LINKS = $($(Project)BinDistLinks)" >> $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/Makefile.in
278         cat $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/Makefile-bin.in >> $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/Makefile.in
279         @echo "Generating a shippable configure script.."
280         $(MV) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/configure-bin.ac $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/configure.ac
281         ( cd $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME); autoconf )
282         if test -x $(BIN_DIST_MAIN_DIR)/mk/post-install-script ; then \
283                 cp $(BIN_DIST_MAIN_DIR)/mk/post-install-script \
284                         $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME) ; \
285         fi
286         if test -x $(BIN_DIST_MAIN_DIR)/mk/post-inplace-script ; then \
287                 cp $(BIN_DIST_MAIN_DIR)/mk/post-inplace-script \
288                         $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME) ; \
289         fi
290 #
291 # binary dist'ing the documentation.  
292 # The default documentation to build/install is given below; overrideable
293 # via build.mk or the 'make' command-line.
294
295 ifndef BINDIST_DOC_WAYS
296 BINDIST_DOC_WAYS = html ps
297 endif
298 # BINDIST_DOC_WAYS =
299
300 binary-dist ::
301 ifneq "$(DIR_DOCBOOK_XSL)" ""
302         @for i in $(BIN_DIST_DIRS); do                          \
303           if test -d "$$i"; then                                \
304             $(MAKE) -C $$i $(MFLAGS) $(BINDIST_DOC_WAYS);       \
305             echo $(MAKE) -C $$i $(MFLAGS) install-docs XMLDocWays="$(BINDIST_DOC_WAYS)" \
306                 prefix=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)      \
307                 exec_prefix=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME) \
308                 bindir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/bin/$(TARGETPLATFORM) \
309                 libdir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/lib/$(TARGETPLATFORM) \
310                 libexecdir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/lib/$(TARGETPLATFORM) \
311                 datadir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/share; \
312             $(MAKE) -C $$i $(MFLAGS) install-docs XMLDocWays="$(BINDIST_DOC_WAYS)" \
313                 prefix=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)      \
314                 exec_prefix=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME) \
315                 bindir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/bin/$(TARGETPLATFORM) \
316                 libdir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/lib/$(TARGETPLATFORM) \
317                 libexecdir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/lib/$(TARGETPLATFORM) \
318                 datadir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/share; \
319           fi \
320         done
321 endif
322
323 # Rename scripts to $i.prl and $i.sh where necessary.
324 # ToDo: do this in a cleaner way...
325
326 ifneq "$($(Project)BinDistPrlScripts)" ""
327 binary-dist::
328         @for i in $($(Project)BinDistPrlScripts); do \
329              echo "Renaming $$i to $$i.prl"; \
330             $(MV) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/bin/$(TARGETPLATFORM)/$$i  $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/bin/$(TARGETPLATFORM)/$$i.prl; \
331         done
332 endif
333
334 ifneq "$($(Project)BinDistLibPrlScripts)" ""
335 binary-dist::
336         @for i in $($(Project)BinDistLibPrlScripts); do \
337              echo "Renaming $$i to $$i.prl"; \
338             $(MV) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/lib/$(TARGETPLATFORM)/$$i  $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/lib/$(TARGETPLATFORM)/$$i.prl; \
339         done
340 endif
341
342 ifneq "$($(Project)BinDistShScripts)" ""
343 binary-dist::
344         @for i in $($(Project)BinDistShScripts); do \
345             if test -x $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/bin/$(TARGETPLATFORM)/$$i ; then \
346                 echo "Renaming $$i to $$i.sh"; \
347                 $(MV) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/bin/$(TARGETPLATFORM)/$$i  $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/bin/$(TARGETPLATFORM)/$$i.sh; \
348             fi \
349         done
350 endif
351
352 #
353 # Do this separately for now
354
355 binary-pack::
356         ( cd $(BIN_DIST_TMPDIR); $(TAR) chzf $(BIN_DIST_NAME).tar.gz $(BIN_DIST_NAME) )
357
358 ifneq "$(way)" ""
359 .PHONY: package-way-dist
360 package-way-dist::
361         ( 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 )
362         gzip $(BIN_DIST_TMPDIR)/ghc-$(ProjectVersion)-$(way)-$(TARGETPLATFORM).tar
363 endif
364
365 ifneq "$(way)" ""
366 remove-way-dist::
367         ( cd $(BIN_DIST_TMPDIR); $(FIND) $(BIN_DIST_NAME)/ \( -name "*$(_way).a" -o -name "*.$(way_)hi" \) -print -exec $(RM) {} \; )
368 endif
369
370 binary-dist::
371         @echo "Mechanical and super-natty! Inspect the result and *if* happy; freeze, sell and get some sleep!"
372
373 # -----------------------------------------------------------------------------
374 # Building source distributions
375 #
376 # Do it like this: 
377 #
378 #       $ make
379 #       $ make dist Project=Ghc
380 #
381 # WARNING: `make dist' calls `make distclean' before tarring up the tree.
382 #
383
384 .PHONY: dist
385
386 #
387 # Directory in which we're going to build the src dist
388 #
389 SRC_DIST_DIR=$(shell pwd)/$(SRC_DIST_NAME)
390
391 #
392 # Files to include in source distributions
393 #
394 SRC_DIST_DIRS += docs distrib $(filter-out docs distrib,$(SUBDIRS))
395 SRC_DIST_FILES += \
396         configure.ac config.guess config.sub configure \
397         aclocal.m4 README Makefile install-sh \
398         mk/bootstrap.mk \
399         mk/boilerplate.mk mk/config.h.in mk/config.mk.in mk/opts.mk \
400         mk/paths.mk mk/package.mk mk/suffix.mk mk/target.mk \
401         mk/fptools.css mk/fix_install_names.sh
402
403 dist dist-manifest dist-package :: project-check
404
405 # clean the tree first, leaving certain extra files in place (eg. configure)
406 dist :: distclean
407
408 dist ::
409         -rm -rf $(SRC_DIST_DIR)
410         -$(RM) $(SRC_DIST_NAME).tar.gz
411         mkdir $(SRC_DIST_DIR)
412         mkdir $(SRC_DIST_DIR)/mk
413         $(FIND) $(SRC_DIST_DIRS) -type d \( -name CVS -prune -o -name SRC -prune -o -name "autom4te*" -prune -o -print \) | sed -e 's!.*!mkdir "$(SRC_DIST_DIR)/&"!' | sh
414         $(FIND) $(SRC_DIST_DIRS) $(SRC_DIST_FILES) -name CVS -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
415
416 # Automatic generation of a MANIFEST file for a source distribution
417 # tree that is ready to go.
418 dist-manifest ::
419         cd $(SRC_DIST_DIR); $(FIND) . \( -type l -o -type f \) -exec ls -lLG {} \; | sed -e 's/\.\///' > MANIFEST
420
421 dist-package :: dist-package-tar-gz
422
423 SRC_DIST_PATHS = $(patsubst %, $(SRC_DIST_NAME)/%, $(SRC_DIST_FILES) $(SRC_DIST_DIRS))
424
425 dist-package-tar-bz2 ::
426         BZIP2=-9 $(TAR) chjf $(SRC_DIST_NAME)-src.tar.bz2 $(SRC_DIST_NAME) || $(RM) $(SRC_DIST_NAME)-src.tar.bz2
427
428 dist-package-tar-gz ::
429         $(TAR) chzf $(SRC_DIST_NAME)-src.tar.gz $(SRC_DIST_NAME) || $(RM) $(SRC_DIST_NAME)-src.tar.gz
430
431 dist-package-zip ::
432         cd ..; $(LN_S) $(FPTOOLS_TOP_ABS) $(SRC_DIST_NAME) && \
433                $(ZIP) $(ZIP_OPTS) -r $(SRC_DIST_NAME)-src.zip $(SRC_DIST_PATHS)
434
435 # -----------------------------------------------------------------------------
436 # HC file bundles
437
438 hc-file-bundle : project-check
439         $(RM) -r $(ProjectNameShort)-$(ProjectVersion)
440         $(LN_S) . $(ProjectNameShort)-$(ProjectVersion)
441         $(FIND) $(ProjectNameShort)-$(ProjectVersion)/ghc/compiler \
442              $(ProjectNameShort)-$(ProjectVersion)/ghc/utils \
443              $(ProjectNameShort)-$(ProjectVersion)/ghc/lib \
444              $(ProjectNameShort)-$(ProjectVersion)/libraries -follow \
445           \( -name "*.hc" -o -name "*_hsc.[ch]" -o -name "*_stub.[ch]" \) -print > hc-files-to-go
446         for f in `$(FIND) $(ProjectNameShort)-$(ProjectVersion)/ghc/compiler $(ProjectNameShort)-$(ProjectVersion)/ghc/utils $(ProjectNameShort)-$(ProjectVersion)/libraries -name "*.hsc" -follow -print` ""; do \
447              if test "x$$f" != "x" && test -e `echo "$$f" | sed 's/hsc$$/hs/g'`; then \
448                 echo `echo "$$f" | sed 's/hsc$$/hs/g' ` >> hc-files-to-go ; \
449              fi; \
450         done;
451         for f in `$(FIND) $(ProjectNameShort)-$(ProjectVersion)/ghc/compiler $(ProjectNameShort)-$(ProjectVersion)/ghc/rts -name "*.cmm" -follow -print` ""; do \
452              if test "x$$f" != "x"; then \
453                 echo `echo "$$f" | sed 's/cmm$$/hc/g' ` >> hc-files-to-go ; \
454              fi; \
455         done;
456         echo $(ProjectNameShort)-$(ProjectVersion)/libraries/base/GHC/PrimopWrappers.hs >> hc-files-to-go
457         echo $(ProjectNameShort)-$(ProjectVersion)/ghc/compiler/parser/Parser.hs >> hc-files-to-go
458         echo $(ProjectNameShort)-$(ProjectVersion)/ghc/compiler/parser/ParserCore.hs >> hc-files-to-go
459         echo $(ProjectNameShort)-$(ProjectVersion)/ghc/compiler/main/ParsePkgConf.hs >> hc-files-to-go
460         echo $(ProjectNameShort)-$(ProjectVersion)/libraries/haskell-src/Language/Haskell/Parser.hs >> hc-files-to-go
461         tar czf $(ProjectNameShort)-$(ProjectVersion)-$(TARGETPLATFORM)-hc.tar.gz `cat hc-files-to-go`
462
463 CLEAN_FILES += hc-files-to-go *-hc.tar.gz
464
465 # -----------------------------------------------------------------------------
466
467 # Turn off target.mk's rules for 'all', 'boot' and 'install'.
468 NO_BOOT_TARGET=YES
469 NO_ALL_TARGET=YES
470 NO_INSTALL_TARGET=YES
471
472 include $(TOP)/mk/target.mk
473
474 # -----------------------------------------------------------------------------
475