[project @ 2002-06-15 14:45:53 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    include $(shell echo $(Project) | tr A-Z a-z)/mk/config.mk
24 endif
25
26 # -----------------------------------------------------------------------------
27 # Certain targets require that Project is set from the command line.
28
29 CURRENT_TARGET = $(MAKECMDGOALS)
30 project-check :
31         @if [ "$(Project)" = "" ]; then \
32                 echo "  You need to set \"Project\" in order to make $(CURRENT_TARGET)"; \
33                 echo "  eg. make $(CURRENT_TARGET) Project=Ghc"; \
34                 exit 1; \
35         fi
36
37 # -----------------------------------------------------------------------------
38 # Making a binary distribution
39 #
40 # To make a particular binary distribution: 
41 # set $(Project) to the name of the project, capitalised (eg. Ghc or Happy).
42
43 # `dist' `binary-dist'
44 #      Create a distribution tar file for this program. The tar file
45 #      should be set up so that the file names in the tar file start with
46 #      a subdirectory name which is the name of the package it is a
47 #      distribution for. This name can include the version number.
48 #
49 #      For example, the distribution tar file of GCC version 1.40 unpacks
50 #      into a subdirectory named `gcc-1.40'.
51
52 #      The easiest way to do this is to create a subdirectory
53 #      appropriately named, use ln or cp to install the proper files in
54 #      it, and then tar that subdirectory.
55
56 #      The dist target should explicitly depend on all non-source files
57 #      that are in the distribution, to make sure they are up to date in
58 #      the distribution. See Making Releases.
59 #
60 #       binary-dist is an FPtools addition for binary distributions
61
62
63 binary-dist :: project-check
64
65 BIN_DIST_TMPDIR=$(FPTOOLS_TOP_ABS)
66 BIN_DIST_NAME=$(ProjectNameShort)-$(ProjectVersion)
67
68 #
69 # list of toplevel directories to include in binary distrib.
70 #
71 BIN_DIST_MAIN_DIR=$($(Project)MainDir)
72 BIN_DIST_DIRS=$($(Project)BinDistDirs)
73
74 binary-dist:: binary-dist-pre
75
76 BIN_DIST_TOP= distrib/Makefile-bin.in \
77               distrib/configure-bin.in \
78               distrib/INSTALL \
79               $(BIN_DIST_MAIN_DIR)/ANNOUNCE \
80               $(BIN_DIST_MAIN_DIR)/VERSION \
81               $(BIN_DIST_MAIN_DIR)/LICENSE \
82               $(BIN_DIST_MAIN_DIR)/README \
83               glafp-utils/mkdirhier/mkdirhier \
84               install-sh \
85               config.guess \
86               config.sub   \
87               aclocal.m4
88
89 #
90 # binary-dist creates a binary bundle, set BIN_DIST_NAME
91 # to package name and do `make binary-dist Project=<project-name>'
92 # (normally this just a thing you would do from the toplevel of fptools)
93 #
94 .PHONY: binary-dist-pre binary-dist binary-pack
95
96 BIN_DIST_NAME=$(ProjectNameShort)-$(ProjectVersion)
97 BIN_DIST_TMPDIR=$(FPTOOLS_TOP_ABS)
98
99 binary-dist-pre::
100 ifeq "$(BIN_DIST)" ""
101         echo "WARNING: To run the binary-dist target, you need to set BIN_DIST=1 in your build.mk" && exit 1
102 endif
103         -rm -rf $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)
104         -rm -f $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME).tar.gz
105         @for i in $(BIN_DIST_DIRS); do                   \
106           if test -d "$$i"; then                         \
107            echo $(MKDIRHIER) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/bin/$(TARGETPLATFORM); \
108            $(MKDIRHIER) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/bin/$(TARGETPLATFORM); \
109            echo $(MKDIRHIER) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/lib/$(TARGETPLATFORM); \
110            $(MKDIRHIER) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/lib/$(TARGETPLATFORM); \
111            echo $(MKDIRHIER) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/share; \
112            $(MKDIRHIER) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/share; \
113            echo $(MAKE) -C $$i $(MFLAGS) install \
114                 prefix=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME) \
115                 exec_prefix=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME) \
116                 bindir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/bin/$(TARGETPLATFORM) \
117                 libdir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/lib/$(TARGETPLATFORM) \
118                 libexecdir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/lib/$(TARGETPLATFORM) \
119                 datadir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/share; \
120            $(MAKE) -C $$i $(MFLAGS) install \
121                 prefix=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME) \
122                 exec_prefix=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME) \
123                 bindir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/bin/$(TARGETPLATFORM) \
124                 libdir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/lib/$(TARGETPLATFORM) \
125                 libexecdir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/lib/$(TARGETPLATFORM) \
126                 datadir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/share; \
127           fi; \
128         done
129
130 binary-dist::
131         @for i in $(BIN_DIST_TOP); do \
132           if test -f "$$i"; then \
133              echo cp $$i $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME); \
134              cp $$i $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME); \
135           fi; \
136         done;
137         @echo "Configuring the Makefile for this project..."
138         touch $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/Makefile.in
139         echo "package = $(ProjectNameShort)" >> $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/Makefile.in
140         echo "version = $(ProjectVersion)" >> $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/Makefile.in
141         echo "PACKAGE_SH_SCRIPTS = $($(Project)BinDistShScripts)" >> $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/Makefile.in
142         echo "PACKAGE_PRL_SCRIPTS = $($(Project)BinDistPrlScripts)" >> $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/Makefile.in
143         echo "PACKAGE_LIB_PRL_SCRIPTS = $($(Project)BinDistLibPrlScripts)" >> $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/Makefile.in
144         echo "PACKAGE_BINS = $($(Project)BinDistBins)" >> $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/Makefile.in
145         echo "PACKAGE_LINKS = $($(Project)BinDistLinks)" >> $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/Makefile.in
146         cat $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/Makefile-bin.in >> $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/Makefile.in
147         @echo "Generating a shippable configure script.."
148         $(MV) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/configure-bin.in $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/configure.in 
149         ( cd $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME); autoconf )
150         if test -x $(BIN_DIST_MAIN_DIR)/mk/post-install-script ; then \
151                 cp $(BIN_DIST_MAIN_DIR)/mk/post-install-script \
152                         $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME) ; \
153         fi
154         if test -x $(BIN_DIST_MAIN_DIR)/mk/post-inplace-script ; then \
155                 cp $(BIN_DIST_MAIN_DIR)/mk/post-inplace-script \
156                         $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME) ; \
157         fi
158 #
159 # binary dist'ing the documentation.  
160 # Which documentation to build/install is hardcoded below.
161 #
162
163 BINDIST_DOCS = $($(Project)BinDistDocs)
164 BINDIST_DOCS_WAYS = html ps
165
166 binary-dist ::
167         @for way in $(BINDIST_DOCS_WAYS); do \
168            $(MKDIRHIER) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/$$way; \
169            for dir in $(BINDIST_DOCS); do \
170              echo Making $$way documentation in $$dir && \
171              $(MAKE) -C $$dir --no-print-directory $(MFLAGS) $$way >.doclog  2>&1 && \
172              if [ "$$way" = "html" ]; then \
173                 for subdir in `perl -n -e '/output will be in ([_\-A-Za-z0-9]*)/ && do { print "$$1 "; };' <.doclog`; do \
174                    echo Copying HTML docs from $$subdir...; \
175                    cp -Rf $$dir/$$subdir $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/$$way; \
176                 done \
177              else \
178                 cp -f $$dir/*.$$way $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/$$way; \
179              fi && \
180              echo "Done."; \
181            done; \
182         done
183         @rm -f .doclog
184
185 # Rename scripts to $i.prl and $i.sh where necessary.
186 # ToDo: do this in a cleaner way...
187
188 ifneq "$($(Project)BinDistPrlScripts)" ""
189 binary-dist::
190         @for i in $($(Project)BinDistPrlScripts); do \
191              echo "Renaming $$i to $$i.prl"; \
192             $(MV) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/bin/$(TARGETPLATFORM)/$$i  $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/bin/$(TARGETPLATFORM)/$$i.prl; \
193         done
194 endif
195
196 ifneq "$($(Project)BinDistLibPrlScripts)" ""
197 binary-dist::
198         @for i in $($(Project)BinDistLibPrlScripts); do \
199              echo "Renaming $$i to $$i.prl"; \
200             $(MV) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/lib/$(TARGETPLATFORM)/$$i  $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/lib/$(TARGETPLATFORM)/$$i.prl; \
201         done
202 endif
203
204 ifneq "$($(Project)BinDistShScripts)" ""
205 binary-dist::
206         @for i in $($(Project)BinDistShScripts); do \
207              echo "Renaming $$i to $$i.sh"; \
208             $(MV) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/bin/$(TARGETPLATFORM)/$$i  $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/bin/$(TARGETPLATFORM)/$$i.sh; \
209         done
210 endif
211
212 #
213 # Do this separately for now
214
215 binary-pack::
216         ( cd $(BIN_DIST_TMPDIR); $(TAR) chzf $(BIN_DIST_NAME).tar.gz $(BIN_DIST_NAME) )
217
218 ifneq "$(way)" ""
219 package-way-dist::
220         ( 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 )
221         gzip $(BIN_DIST_TMPDIR)/ghc-$(ProjectVersion)-$(way)-$(TARGETPLATFORM).tar
222 endif
223
224 ifneq "$(way)" ""
225 remove-way-dist::
226         ( cd $(BIN_DIST_TMPDIR); find $(BIN_DIST_NAME)/ \( -name "*$(_way).a" -o -name "*.$(way_)hi" \) -print -exec rm -f {} \; )
227 endif
228
229 binary-dist::
230         @echo "Mechanical and super-natty! Inspect the result and *if* happy; freeze, sell and get some sleep!"
231
232 # -----------------------------------------------------------------------------
233 # Building source distributions
234 #
235 # Do it like this: 
236 #
237 #       $ make
238 #       $ make dist Project=Ghc
239 #
240 # WARNING: `make dist' calls `make distclean' before tarring up the tree.
241 #
242
243 .PHONY: dist
244
245 #
246 # Directory in which we're going to build the src dist
247 #
248 SRC_DIST_DIR=$(shell pwd)/$(SRC_DIST_NAME)
249
250 #
251 # Files to include in source distributions
252 #
253 SRC_DIST_DIRS += docs distrib $(SUBDIRS)
254 SRC_DIST_FILES += \
255         configure.in config.guess config.sub configure \
256         aclocal.m4 acconfig.h README Makefile Makefile.config install-sh \
257         mk/bootstrap.mk \
258         mk/boilerplate.mk mk/config.h.in mk/config.mk.in mk/opts.mk \
259         mk/paths.mk mk/package.mk mk/suffix.mk mk/target.mk
260
261 dist dist-manifest dist-package :: project-check
262
263 # clean the tree first, leaving certain extra files in place (eg. configure)
264 dist :: distclean
265
266 dist ::
267         -rm -rf $(SRC_DIST_DIR)
268         -rm -f $(SRC_DIST_NAME).tar.gz
269         mkdir $(SRC_DIST_DIR)
270         mkdir $(SRC_DIST_DIR)/mk
271         ( cd $(FPTOOLS_TOP_ABS); $(FIND) $(SRC_DIST_DIRS) -type d \( -name CVS -prune -o -name SRC -prune -o -print \) | sed -e 's!.*!mkdir "$(SRC_DIST_DIR)/&"!' | sh )
272         ( cd $(FPTOOLS_TOP_ABS); $(FIND) $(SRC_DIST_DIRS) $(SRC_DIST_FILES) -name CVS -prune -o -name SRC -prune -o -name tests -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 )
273
274 # Automatic generation of a MANIFEST file for a source distribution
275 # tree that is ready to go.
276 dist-manifest ::
277         cd $(SRC_DIST_DIR); $(FIND) . \( -type l -o -type f \) -exec ls -lLG {} \; | sed -e 's/\.\///' > MANIFEST.tmp ; mv MANIFEST.tmp MANIFEST
278
279 dist-package :: dist-package-tar-gz
280
281 SRC_DIST_PATHS = $(patsubst %, $(SRC_DIST_NAME)/%, $(SRC_DIST_FILES) $(SRC_DIST_DIRS))
282
283 dist-package-tar-gz ::
284         $(TAR) chzf $(SRC_DIST_NAME)-src.tar.gz $(SRC_DIST_NAME)
285
286 dist-package-zip ::
287         cd ..; $(LN_S) $(FPTOOLS_TOP_ABS) $(SRC_DIST_NAME) && \
288                $(ZIP) $(ZIP_OPTS) -r $(SRC_DIST_NAME)-src.zip $(SRC_DIST_PATHS)
289
290 # -----------------------------------------------------------------------------
291 # HC file bundles
292
293 hc-file-bundle : project-check
294         $(RM) -r $(ProjectNameShort)-$(ProjectVersion)
295         $(LN_S) . $(ProjectNameShort)-$(ProjectVersion)
296         find $(ProjectNameShort)-$(ProjectVersion)/ghc/compiler \
297              $(ProjectNameShort)-$(ProjectVersion)/ghc/driver \
298              $(ProjectNameShort)-$(ProjectVersion)/ghc/lib \
299              $(ProjectNameShort)-$(ProjectVersion)/hslibs \
300           \( -name "*.hc" -o -name "*_hsc.[ch]" -o -name "*_stub.[ch]" \) -print > hc-files-to-go
301         find $(ProjectNameShort)-$(ProjectVersion)/ghc/compiler \
302              $(ProjectNameShort)-$(ProjectVersion)/ghc/driver \
303              $(ProjectNameShort)-$(ProjectVersion)/ghc/lib \
304              $(ProjectNameShort)-$(ProjectVersion)/hslibs \
305           -name "*.hsc" -print | sed 's/hsc$$/hs/g' >> hc-files-to-go
306         echo $(ProjectNameShort)-$(ProjectVersion)/libraries/base/GHC/PrimopWrappers.hs >> hc-files-to-go
307         echo $(ProjectNameShort)-$(ProjectVersion)/ghc/compiler/*.hs-incl >> hc-files-to-go
308         echo $(ProjectNameShort)-$(ProjectVersion)/ghc/compiler/parser/Parser.hs >> hc-files-to-go
309         echo $(ProjectNameShort)-$(ProjectVersion)/ghc/compiler/main/ParsePkgConf.hs >> hc-files-to-go
310         echo $(ProjectNameShort)-$(ProjectVersion)/hslibs/hssource/HsParser.hs >> hc-files-to-go
311         tar czf $(ProjectNameShort)-$(ProjectVersion)-$(TARGETPLATFORM)-hc.tar.gz `cat hc-files-to-go`
312
313 CLEAN_FILES += hc-files-to-go *-hc.tar.gz
314
315 # -----------------------------------------------------------------------------
316
317 DIST_CLEAN_FILES += config.cache config.status
318
319 #
320 # If you've ended up using an in-place version of Happy,
321 # make sure it gets built early on.
322 #
323 ifeq "$(HAPPY)" "$(FPTOOLS_TOP_ABS)/happy/src/happy-inplace"
324 all :: $(FPTOOLS_TOP_ABS)/happy/src/happy-inplace
325
326 $(FPTOOLS_TOP_ABS)/happy/src/happy-inplace : glafp-utils
327         $(MAKE) -C happy boot all
328 endif
329
330 all ::
331         @case '${MFLAGS}' in *-[ik]*) x_on_err=0;; *-r*[ik]*) x_on_err=0;; *) x_on_err=1;; esac; \
332         for i in $(SUBDIRS); do \
333            if [ -d $$i ]; then \
334               $(MAKE) -C $$i boot; \
335               if [ $$? -eq 0 -o $$x_on_err -eq 0 ] ;  then true; else exit 1; fi; \
336               $(MAKE) -C $$i all; \
337               if [ $$? -eq 0 -o $$x_on_err -eq 0 ] ;  then true; else exit 1; fi; \
338               fi; \
339         done
340
341 boot ::
342         @echo "Please use \`make all' only from the top-level, or \`make boot' followed"
343         @echo "by \`make all' in an individual project subdirectory (ghc, hslibs etc.)."
344
345 install ::
346         @case '${MFLAGS}' in *-[ik]*) x_on_err=0;; *-r*[ik]*) x_on_err=0;; *) x_on_err=1;; esac; \
347         for i in $(filter-out $(ProjectsDontInstall), $(SUBDIRS)); do \
348            if [ -d $$i ]; then \
349               $(MAKE) -C $$i install; \
350               if [ $$? -eq 0 -o $$x_on_err -eq 0 ] ;  then true; else exit 1; fi; \
351               fi; \
352         done
353
354 install-docs ::
355         @case '${MFLAGS}' in *-[ik]*) x_on_err=0;; *-r*[ik]*) x_on_err=0;; *) x_on_err=1;; esac; \
356         for i in $(filter-out $(ProjectsDontInstall), $(SUBDIRS)); do \
357            if [ -d $$i ]; then \
358               $(MAKE) -C $$i install-docs; \
359               if [ $$? -eq 0 -o $$x_on_err -eq 0 ] ;  then true; else exit 1; fi; \
360               fi; \
361         done
362
363 # Turn off target.mk's rules for 'all', 'boot' and 'install'.
364 NO_BOOT_TARGET=YES
365 NO_ALL_TARGET=YES
366 NO_INSTALL_TARGET=YES
367
368 include $(TOP)/mk/target.mk
369
370 # -----------------------------------------------------------------------------
371