[project @ 2001-04-25 10:00:29 by simonmar]
[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)/RELEASE \
82               $(BIN_DIST_MAIN_DIR)/LICENSE \
83               $(BIN_DIST_MAIN_DIR)/README \
84               glafp-utils/mkdirhier/mkdirhier \
85               install-sh \
86               config.guess \
87               config.sub   \
88               aclocal.m4
89
90 #
91 # binary-dist creates a binary bundle, set BIN_DIST_NAME
92 # to package name and do `make binary-dist Project=<project-name>'
93 # (normally this just a thing you would do from the toplevel of fptools)
94 #
95 .PHONY: binary-dist-pre binary-dist binary-pack
96
97 BIN_DIST_NAME=$(ProjectNameShort)-$(ProjectVersion)
98 BIN_DIST_TMPDIR=$(FPTOOLS_TOP_ABS)
99
100 binary-dist-pre::
101         -rm -rf $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)
102         -rm -f $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME).tar.gz
103         @for i in $(BIN_DIST_DIRS); do                   \
104           if test -d "$$i"; then                         \
105            echo $(MKDIRHIER) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/bin/$(TARGETPLATFORM); \
106            $(MKDIRHIER) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/bin/$(TARGETPLATFORM); \
107            echo $(MKDIRHIER) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/lib/$(TARGETPLATFORM); \
108            $(MKDIRHIER) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/lib/$(TARGETPLATFORM); \
109            echo $(MKDIRHIER) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/share; \
110            $(MKDIRHIER) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/share; \
111            echo $(MAKE) -C $$i $(MFLAGS) install \
112                 prefix=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME) \
113                 exec_prefix=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME) \
114                 bindir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/bin/$(TARGETPLATFORM) \
115                 libdir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/lib/$(TARGETPLATFORM) \
116                 libexecdir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/lib/$(TARGETPLATFORM) \
117                 datadir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/share; \
118            $(MAKE) -C $$i $(MFLAGS) install \
119                 prefix=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME) \
120                 exec_prefix=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME) \
121                 bindir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/bin/$(TARGETPLATFORM) \
122                 libdir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/lib/$(TARGETPLATFORM) \
123                 libexecdir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/lib/$(TARGETPLATFORM) \
124                 datadir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/share; \
125           fi; \
126         done
127
128 binary-dist::
129         @for i in $(BIN_DIST_TOP); do \
130           if test -f "$$i"; then \
131              echo cp $$i $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME); \
132              cp $$i $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME); \
133           fi; \
134         done;
135         @echo "Configuring the Makefile for this project..."
136         touch $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/Makefile.in
137         echo "package = $(ProjectNameShort)" >> $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/Makefile.in
138         echo "version = $(ProjectVersion)" >> $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/Makefile.in
139         echo "PACKAGE_SH_SCRIPTS = $($(Project)BinDistShScripts)" >> $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/Makefile.in
140         echo "PACKAGE_PRL_SCRIPTS = $($(Project)BinDistPrlScripts)" >> $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/Makefile.in
141         echo "PACKAGE_LIB_PRL_SCRIPTS = $($(Project)BinDistLibPrlScripts)" >> $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/Makefile.in
142         echo "PACKAGE_BINS = $($(Project)BinDistBins)" >> $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/Makefile.in
143         echo "PACKAGE_LINKS = $($(Project)BinDistLinks)" >> $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/Makefile.in
144         cat $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/Makefile-bin.in >> $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/Makefile.in
145         @echo "Generating a shippable configure script.."
146         $(MV) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/configure-bin.in $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/configure.in 
147         ( cd $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME); autoconf )
148         if test -x $(BIN_DIST_MAIN_DIR)/mk/post-install-script ; then \
149                 cp $(BIN_DIST_MAIN_DIR)/mk/post-install-script \
150                         $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME) ; \
151         fi
152         if test -x $(BIN_DIST_MAIN_DIR)/mk/post-inplace-script ; then \
153                 cp $(BIN_DIST_MAIN_DIR)/mk/post-inplace-script \
154                         $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME) ; \
155         fi
156 #
157 # binary dist'ing the documentation.  
158 # Which documentation to build/install is hardcoded below.
159 #
160
161 BINDIST_DOCS = $($(Project)BinDistDocs)
162 BINDIST_DOCS_WAYS = html ps
163
164 ifeq "$(HOSTPLATFORM)" "i386-unknown-linux"
165 binary-dist ::
166         @for way in $(BINDIST_DOCS_WAYS); do \
167            $(MKDIRHIER) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/$$way; \
168            for dir in $(BINDIST_DOCS); do \
169              echo Making $$way documentation in $$dir && \
170              $(MAKE) -C $$dir --no-print-directory $(MFLAGS) $$way >.doclog  2>&1 && \
171              if [ "$$way" = "html" ]; then \
172                 for subdir in `perl -n -e '/output will be in ([_\-A-Za-z0-9]*)/ && do { print "$$1 "; };' <.doclog`; do \
173                    echo Copying HTML docs from $$subdir...; \
174                    cp -Rf $$dir/$$subdir $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/$$way; \
175                 done \
176              else \
177                 cp -f $$dir/*.$$way $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/$$way; \
178              fi && \
179              echo "Done."; \
180            done; \
181         done
182         @rm -f .doclog
183 endif
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 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/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 -name tests -prune -o -exec mkdir $(SRC_DIST_DIR)/{} \; \) ; )
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 -exec $(LN_S) $(FPTOOLS_TOP_ABS)/{} $(SRC_DIST_DIR)/{} \; )
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
292 DIST_CLEAN_FILES += config.cache config.status
293
294 all ::
295         @case '${MFLAGS}' in *-[ik]*) x_on_err=0;; *-r*[ik]*) x_on_err=0;; *) x_on_err=1;; esac; \
296         for i in $(SUBDIRS); do \
297            if [ -d $$i ]; then \
298               $(MAKE) -C $$i boot all; \
299               if [ $$? -eq 0 -o $$x_on_err -eq 0 ] ;  then true; else exit 1; fi; \
300               fi; \
301         done
302
303 boot ::
304         @echo "Please use \`make all' only from the top-level, or \`make boot' followed"
305         @echo "by \`make all' in an individual project subdirectory (ghc, hslibs etc.)."
306
307 install ::
308         @case '${MFLAGS}' in *-[ik]*) x_on_err=0;; *-r*[ik]*) x_on_err=0;; *) x_on_err=1;; esac; \
309         for i in $(filter-out $(ProjectsDontInstall), $(SUBDIRS)); do \
310            if [ -d $$i ]; then \
311               $(MAKE) -C $$i install; \
312               if [ $$? -eq 0 -o $$x_on_err -eq 0 ] ;  then true; else exit 1; fi; \
313               fi; \
314         done
315
316 NO_ALL_TARGETS=YES
317 include $(TOP)/mk/target.mk
318
319 # -----------------------------------------------------------------------------
320