[project @ 2001-03-23 16:36:20 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 SUBDIRS = $(filter $(patsubst %/, %, $(wildcard */)), $(AllProjects))
14
15 # and filter only those that the user requested, if necessary
16 ifeq "$(ProjectsToBuild)" ""
17 Projects = $(SUBDIRS)
18 else
19 Projects = $(filter $(ProjectsToBuild), $(SUBDIRS))
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 # Make sure configure is up-to-date
39
40 all install dist binary-dist :: configure
41 configure :: configure.in
42         @echo "WARNING: configure needs to be regenerated.  Type"
43         @echo "      make -f Makefile.config ./configure"
44         @echo "and rerun make."
45         @exit 16
46
47 # -----------------------------------------------------------------------------
48 # Making a binary distribution
49 #
50 # To make a particular binary distribution: 
51 # set $(Project) to the name of the project, capitalised (eg. Ghc or Happy).
52
53 # `dist' `binary-dist'
54 #      Create a distribution tar file for this program. The tar file
55 #      should be set up so that the file names in the tar file start with
56 #      a subdirectory name which is the name of the package it is a
57 #      distribution for. This name can include the version number.
58 #
59 #      For example, the distribution tar file of GCC version 1.40 unpacks
60 #      into a subdirectory named `gcc-1.40'.
61
62 #      The easiest way to do this is to create a subdirectory
63 #      appropriately named, use ln or cp to install the proper files in
64 #      it, and then tar that subdirectory.
65
66 #      The dist target should explicitly depend on all non-source files
67 #      that are in the distribution, to make sure they are up to date in
68 #      the distribution. See Making Releases.
69 #
70 #       binary-dist is an FPtools addition for binary distributions
71
72
73 binary-dist :: project-check
74
75 BIN_DIST_TMPDIR=$(FPTOOLS_TOP_ABS)
76 BIN_DIST_NAME=$(ProjectNameShort)-$(ProjectVersion)
77
78 #
79 # list of toplevel directories to include in binary distrib.
80 #
81 BIN_DIST_MAIN_DIR=$($(Project)MainDir)
82 BIN_DIST_DIRS=$($(Project)BinDistDirs)
83
84 binary-dist:: binary-dist-pre
85
86 BIN_DIST_TOP= distrib/Makefile-bin.in \
87               distrib/configure-bin.in \
88               distrib/INSTALL \
89               $(BIN_DIST_MAIN_DIR)/ANNOUNCE \
90               $(BIN_DIST_MAIN_DIR)/VERSION \
91               $(BIN_DIST_MAIN_DIR)/RELEASE \
92               $(BIN_DIST_MAIN_DIR)/LICENSE \
93               $(BIN_DIST_MAIN_DIR)/README \
94               glafp-utils/mkdirhier/mkdirhier \
95               install-sh \
96               config.guess \
97               config.sub   \
98               aclocal.m4
99
100 #
101 # binary-dist creates a binary bundle, set BIN_DIST_NAME
102 # to package name and do `make binary-dist Project=<project-name>'
103 # (normally this just a thing you would do from the toplevel of fptools)
104 #
105 .PHONY: binary-dist-pre binary-dist binary-pack
106
107 BIN_DIST_NAME=$(ProjectNameShort)-$(ProjectVersion)
108 BIN_DIST_TMPDIR=$(FPTOOLS_TOP_ABS)
109
110 binary-dist-pre::
111         -rm -rf $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)
112         -rm -f $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME).tar.gz
113         @for i in $(BIN_DIST_DIRS); do                   \
114           if test -d "$$i"; then                         \
115            echo $(MKDIRHIER) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/bin/$(TARGETPLATFORM); \
116            $(MKDIRHIER) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/bin/$(TARGETPLATFORM); \
117            echo $(MKDIRHIER) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/lib/$(TARGETPLATFORM); \
118            $(MKDIRHIER) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/lib/$(TARGETPLATFORM); \
119            echo $(MKDIRHIER) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/share; \
120            $(MKDIRHIER) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/share; \
121            echo $(MAKE) -C $$i $(MFLAGS) install \
122                 prefix=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME) \
123                 exec_prefix=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME) \
124                 bindir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/bin/$(TARGETPLATFORM) \
125                 libdir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/lib/$(TARGETPLATFORM) \
126                 libexecdir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/lib/$(TARGETPLATFORM) \
127                 datadir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/share; \
128            $(MAKE) -C $$i $(MFLAGS) install \
129                 prefix=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME) \
130                 exec_prefix=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME) \
131                 bindir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/bin/$(TARGETPLATFORM) \
132                 libdir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/lib/$(TARGETPLATFORM) \
133                 libexecdir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/lib/$(TARGETPLATFORM) \
134                 datadir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/share; \
135           fi; \
136         done
137
138 binary-dist::
139         @for i in $(BIN_DIST_TOP); do \
140           if test -f "$$i"; then \
141              echo cp $$i $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME); \
142              cp $$i $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME); \
143           fi; \
144         done;
145 #       @echo "Configuring the Makefile for this project..."
146 #       touch $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/Makefile.in
147 #       echo "package = $(ProjectNameShort)" >> $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/Makefile.in
148 #       echo "version = $(ProjectVersion)" >> $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/Makefile.in
149 #       echo "PACKAGE_SH_SCRIPTS = $($(Project)BinDistShScripts)" >> $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/Makefile.in
150 #       echo "PACKAGE_PRL_SCRIPTS = $($(Project)BinDistPrlScripts)" >> $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/Makefile.in
151 #       echo "PACKAGE_LIB_PRL_SCRIPTS = $($(Project)BinDistLibPrlScripts)" >> $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/Makefile.in
152 #       echo "PACKAGE_BINS = $($(Project)BinDistBins)" >> $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/Makefile.in
153 #       cat $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/Makefile-bin.in >> $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/Makefile.in
154 #       @echo "Generating a shippable configure script.."
155 #       $(MV) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/configure-bin.in $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/configure.in 
156 #       ( cd $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME); autoconf )
157
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 $(Projects)
254 SRC_DIST_FILES += \
255         configure.in config.guess config.sub configure \
256         aclocal.m4 acconfig.h README Makefile install-sh \
257         mk/boilerplate.mk mk/config.h.in mk/config.mk.in mk/opts.mk \
258         mk/paths.mk mk/suffix.mk mk/target.mk
259
260 dist dist-manifest dist-package :: project-check
261
262 # clean the tree first, leaving certain extra files in place (eg. configure)
263 dist :: distclean
264
265 dist ::
266         -rm -rf $(SRC_DIST_DIR)
267         -rm -f $(SRC_DIST_NAME).tar.gz
268         mkdir $(SRC_DIST_DIR)
269         mkdir $(SRC_DIST_DIR)/mk
270         ( 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)/{} \; \) ; )
271         ( 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)/{} \; )
272
273 # Automatic generation of a MANIFEST file for a source distribution
274 # tree that is ready to go.
275 dist-manifest ::
276         cd $(SRC_DIST_DIR); $(FIND) . \( -type l -o -type f \) -exec ls -lLG {} \; | sed -e 's/\.\///' > MANIFEST.tmp ; mv MANIFEST.tmp MANIFEST
277
278 dist-package :: dist-package-tar-gz
279
280 SRC_DIST_PATHS = $(patsubst %, $(SRC_DIST_NAME)/%, $(SRC_DIST_FILES) $(SRC_DIST_DIRS))
281
282 dist-package-tar-gz ::
283         $(TAR) chzf $(SRC_DIST_NAME)-src.tar.gz $(SRC_DIST_NAME)
284
285 dist-package-zip ::
286         cd ..; $(LN_S) $(FPTOOLS_TOP_ABS) $(SRC_DIST_NAME) && \
287                $(ZIP) $(ZIP_OPTS) -r $(SRC_DIST_NAME)-src.zip $(SRC_DIST_PATHS)
288
289 # -----------------------------------------------------------------------------
290
291 DIST_CLEAN_FILES += config.cache config.status
292
293 MAINTAINER_CLEAN_FILES += configure
294
295 all ::
296         @case '${MFLAGS}' in *-[ik]*) x_on_err=0;; *-r*[ik]*) x_on_err=0;; *) x_on_err=1;; esac; \
297         for i in $(Projects); do \
298            if [ -d $$i ]; then \
299               $(MAKE) -C $$i boot all; \
300               if [ $$? -eq 0 -o $$x_on_err -eq 0 ] ;  then true; else exit 1; fi; \
301               fi; \
302         done
303
304 boot ::
305         @echo "Please use \`make all' only from the top-level, or \`make boot' followed"
306         @echo "by \`make all' in an individual project subdirectory (ghc, hslibs etc.)."
307
308 install ::
309         @case '${MFLAGS}' in *-[ik]*) x_on_err=0;; *-r*[ik]*) x_on_err=0;; *) x_on_err=1;; esac; \
310         for i in $(filter-out $(ProjectsDontInstall), $(Projects)); do \
311            if [ -d $$i ]; then \
312               $(MAKE) -C $$i install; \
313               if [ $$? -eq 0 -o $$x_on_err -eq 0 ] ;  then true; else exit 1; fi; \
314               fi; \
315         done
316
317 NO_ALL_TARGETS=YES
318 include $(TOP)/mk/target.mk
319
320 # -----------------------------------------------------------------------------
321