[project @ 2001-04-03 13:18:34 by sewardj]
[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         echo "PACKAGE_LINKS = $($(Project)BinDistLinks)" >> $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/Makefile.in
154         cat $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/Makefile-bin.in >> $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/Makefile.in
155         @echo "Generating a shippable configure script.."
156         $(MV) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/configure-bin.in $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/configure.in 
157         ( cd $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME); autoconf )
158         cp $(BIN_DIST_MAIN_DIR)/mk/post-install-script $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)
159 #
160 # binary dist'ing the documentation.  
161 # Which documentation to build/install is hardcoded below.
162 #
163
164 BINDIST_DOCS = $($(Project)BinDistDocs)
165 BINDIST_DOCS_WAYS = html ps
166
167 binary-dist ::
168         @for way in $(BINDIST_DOCS_WAYS); do \
169            $(MKDIRHIER) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/$$way; \
170            for dir in $(BINDIST_DOCS); do \
171              echo Making $$way documentation in $$dir && \
172              $(MAKE) -C $$dir --no-print-directory $(MFLAGS) $$way >.doclog  2>&1 && \
173              if [ "$$way" = "html" ]; then \
174                 for subdir in `perl -n -e '/output will be in ([_\-A-Za-z0-9]*)/ && do { print "$$1 "; };' <.doclog`; do \
175                    echo Copying HTML docs from $$subdir...; \
176                    cp -Rf $$dir/$$subdir $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/$$way; \
177                 done \
178              else \
179                 cp -f $$dir/*.$$way $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/$$way; \
180              fi && \
181              echo "Done."; \
182            done; \
183         done
184         @rm -f .doclog
185
186 # Rename scripts to $i.prl and $i.sh where necessary.
187 # ToDo: do this in a cleaner way...
188
189 ifneq "$($(Project)BinDistPrlScripts)" ""
190 binary-dist::
191         @for i in $($(Project)BinDistPrlScripts); do \
192              echo "Renaming $$i to $$i.prl"; \
193             $(MV) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/bin/$(TARGETPLATFORM)/$$i  $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/bin/$(TARGETPLATFORM)/$$i.prl; \
194         done
195 endif
196
197 ifneq "$($(Project)BinDistLibPrlScripts)" ""
198 binary-dist::
199         @for i in $($(Project)BinDistLibPrlScripts); do \
200              echo "Renaming $$i to $$i.prl"; \
201             $(MV) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/lib/$(TARGETPLATFORM)/$$i  $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/lib/$(TARGETPLATFORM)/$$i.prl; \
202         done
203 endif
204
205 ifneq "$($(Project)BinDistShScripts)" ""
206 binary-dist::
207         @for i in $($(Project)BinDistShScripts); do \
208              echo "Renaming $$i to $$i.sh"; \
209             $(MV) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/bin/$(TARGETPLATFORM)/$$i  $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/bin/$(TARGETPLATFORM)/$$i.sh; \
210         done
211 endif
212
213 #
214 # Do this separately for now
215
216 binary-pack::
217         ( cd $(BIN_DIST_TMPDIR); $(TAR) chzf $(BIN_DIST_NAME).tar.gz $(BIN_DIST_NAME) )
218
219 ifneq "$(way)" ""
220 package-way-dist::
221         ( 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 )
222         gzip $(BIN_DIST_TMPDIR)/ghc-$(ProjectVersion)-$(way)-$(TARGETPLATFORM).tar
223 endif
224
225 ifneq "$(way)" ""
226 remove-way-dist::
227         ( cd $(BIN_DIST_TMPDIR); find $(BIN_DIST_NAME)/ \( -name "*$(_way).a" -o -name "*.$(way_)hi" \) -print -exec rm -f {} \; )
228 endif
229
230 binary-dist::
231         @echo "Mechanical and super-natty! Inspect the result and *if* happy; freeze, sell and get some sleep!"
232
233 # -----------------------------------------------------------------------------
234 # Building source distributions
235 #
236 # Do it like this: 
237 #
238 #       $ make
239 #       $ make dist Project=Ghc
240 #
241 # WARNING: `make dist' calls `make distclean' before tarring up the tree.
242 #
243
244 .PHONY: dist
245
246 #
247 # Directory in which we're going to build the src dist
248 #
249 SRC_DIST_DIR=$(shell pwd)/$(SRC_DIST_NAME)
250
251 #
252 # Files to include in source distributions
253 #
254 SRC_DIST_DIRS += docs distrib $(Projects)
255 SRC_DIST_FILES += \
256         configure.in config.guess config.sub configure \
257         aclocal.m4 acconfig.h README Makefile install-sh \
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 MAINTAINER_CLEAN_FILES += configure
295
296 all ::
297         @case '${MFLAGS}' in *-[ik]*) x_on_err=0;; *-r*[ik]*) x_on_err=0;; *) x_on_err=1;; esac; \
298         for i in $(Projects); do \
299            if [ -d $$i ]; then \
300               $(MAKE) -C $$i boot all; \
301               if [ $$? -eq 0 -o $$x_on_err -eq 0 ] ;  then true; else exit 1; fi; \
302               fi; \
303         done
304
305 boot ::
306         @echo "Please use \`make all' only from the top-level, or \`make boot' followed"
307         @echo "by \`make all' in an individual project subdirectory (ghc, hslibs etc.)."
308
309 install ::
310         @case '${MFLAGS}' in *-[ik]*) x_on_err=0;; *-r*[ik]*) x_on_err=0;; *) x_on_err=1;; esac; \
311         for i in $(filter-out $(ProjectsDontInstall), $(Projects)); do \
312            if [ -d $$i ]; then \
313               $(MAKE) -C $$i install; \
314               if [ $$? -eq 0 -o $$x_on_err -eq 0 ] ;  then true; else exit 1; fi; \
315               fi; \
316         done
317
318 NO_ALL_TARGETS=YES
319 include $(TOP)/mk/target.mk
320
321 # -----------------------------------------------------------------------------
322