index.html: Describe DR #22, and a workaround.
[official-gcc.git] / libf2c / Makefile.in
blob579182a1b358c0ba26eeca14f2e75ae71646549d
1 # Makefile for GNU F77 compiler runtime.
2 # Copyright (C) 1995-1998 Free Software Foundation, Inc.
3 # Contributed by Dave Love (d.love@dl.ac.uk).
5 #This file is part of GNU Fortran.
7 #GNU Fortran is free software; you can redistribute it and/or modify
8 #it under the terms of the GNU General Public License as published by
9 #the Free Software Foundation; either version 2, or (at your option)
10 #any later version.
12 #GNU Fortran is distributed in the hope that it will be useful,
13 #but WITHOUT ANY WARRANTY; without even the implied warranty of
14 #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 #GNU General Public License for more details.
17 #You should have received a copy of the GNU General Public License
18 #along with GNU Fortran; see the file COPYING. If not, write to
19 #the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
20 #02111-1307, USA.
22 SHELL = /bin/sh
24 #### Start of system configuration section. ####
26 srcdir = @srcdir@
27 VPATH = @srcdir@
28 prefix = @prefix@
29 exec_prefix = @exec_prefix@
30 target_alias = @target_alias@
31 gcc_version = @gcc_version@
32 gcc_version_trigger = @gcc_version_trigger@
34 top_builddir = .
36 libdir = $(exec_prefix)/lib
37 libsubdir = $(libdir)/gcc-lib/$(target_alias)/$(gcc_version)
39 # Versions should start at 0:0:0 - See libtool manual.
40 VERSION_MAJOR=0
41 VERSION_MINOR=0
42 VERSION_SUB=0
44 # Multilib support variables.
45 MULTISRCTOP =
46 MULTIBUILDTOP =
47 MULTIDIRS =
48 MULTISUBDIR =
49 MULTIDO = true
50 MULTICLEAN = true
52 # Not configured per top-level version, since that doesn't get passed
53 # Versions should start at 0:0:0 - See libtool manual.
54 # down at configure time, but overrridden by the top-level install
55 # target.
56 INSTALL = @INSTALL@
57 INSTALL_PROGRAM = @INSTALL_PROGRAM@
58 INSTALL_DATA = @INSTALL_DATA@
60 LIBTOOL = @LIBTOOL@
61 CC = @CC@
62 CFLAGS = @CFLAGS@
64 # List of variables to pass to sub-makes.
65 # Quote this way so that it can be used to set shell variables too.
66 FLAGS_TO_PASS= \
67 CC='$(CC)' \
68 LIBTOOL='$(LIBTOOL)' \
69 CFLAGS='$(CFLAGS)' \
70 CPPFLAGS='$(CPPFLAGS)' \
71 AR='$(AR)' \
72 RANLIB='$(RANLIB)' \
73 prefix='$(prefix)' \
74 exec_prefix='$(exec_prefix)' \
75 libdir='$(libdir)' \
76 libsubdir='$(libsubdir)' \
77 tooldir='$(tooldir)'
79 LIBG2C_BASE = libg2c
80 LIBG2C = $(LIBG2C_BASE).la
82 SUBDIRS = libI77 libF77 libU77
84 F2CEXT = abort derf derfc ef1asc ef1cmc erf erfc exit getarg getenv iargc \
85 signal system flush ftell fseek access besj0 besj1 besjn besy0 besy1 \
86 besyn chdir chmod ctime dbesj0 dbesj1 dbesjn dbesy0 dbesy1 dbesyn \
87 dtime etime fdate fgetc fget flush1 fnum fputc fput fstat gerror \
88 getcwd getgid getlog getpid getuid gmtime hostnm idate ierrno irand \
89 isatty itime kill link lnblnk lstat ltime mclock perror rand rename \
90 secnds second sleep srand stat symlnk time ttynam umask unlink \
91 vxttim alarm \
92 date_y2kbuggy date_y2kbug vxtidt_y2kbuggy vxtidt_y2kbug
94 .SUFFIXES:
96 # The logic here is partly dictated by the desire to keep the lib?77
97 # subdirs for compatibility with the Netlib version and because libU77
98 # has a different copyright; then the libe77 bit (EXTERNALly-callable
99 # versions) is funny. Given that, as well as keeping things as simple
100 # as possible we want (at least) the following:
101 # * Allow make to be run at the top level (all-target-libf2c), at this
102 # level, or the subdirs of this level. In the latter case we only
103 # compile, rather than updating libg2c.a;
104 # * A robust set of dependencies, so that we rebuild (as little as
105 # possible) if a configuration file, g2c.h or any lib?77/*.c file
106 # changes;
107 # * Avoid unnecessary running of ar and ranlib;
108 # * Expose parallelism where reasonable, but not as a priority.
110 # The intended top-level target here does a non-multilib build (via
111 # the dependency) and then (perhaps) builds multilibs.
113 all: all-unilib
114 $(MULTIDO) $(FLAGS_TO_PASS) multi-do DO="all-unilib"
116 # `all-unilib' is the overall target in the absence of multilibs,
117 # meant to be invoked via multi-do for multilibs.
119 # Its dependencies can be satisfied in parallel. The [fiu]77 targets
120 # update stamp files (see the subdir makefiles) which the $(LIBG2C)
121 # target checks in the sub make to decide whether to run ar/ranlib.
122 # (Probably only one stamp file is really needed.) The stamp files
123 # s-lib[fiu]77 are intentionally not targets, since we're only meant
124 # to come in at the level of this target. The [fiu]77 targets always
125 # invoke sub makes to check dependencies in the subdirs, else we'd
126 # have to maintain them at this level; we live with the overhead of
127 # some recursive makes which may do nothing.
129 all-unilib: i77 f77 u77 s-libe77
130 $(MAKE) $(FLAGS_TO_PASS) $(LIBG2C)
132 i77 f77 u77: g2c.h
134 # This target should normally only get invoked via `all-unilib' --
135 # after all's well in the subdirs -- actually to assemble the library.
136 # The stamp file dependencies are just to check whether libg2c.a is
137 # up-to-date (to avoid running ar regardless) -- the files should
138 # always have been created by a successful `all-unilib'.
140 $(LIBG2C): s-libi77 s-libf77 s-libu77 s-libe77
141 rm -f $@ ;\
142 set -e; \
143 rm -f objlist ;\
144 touch objlist ;\
145 for i in $(SUBDIRS) ;\
146 do \
147 (cd $$i && $(MAKE) $(FLAGS_TO_PASS) objlist) ;\
148 done ;\
149 objs="`cat objlist`" ;\
150 for i in $(F2CEXT); do objs="$$objs libE77/L$$i.lo"; done ;\
151 echo -n $$objs > objlist
152 $(LIBTOOL) --mode=link $(CC) -o $@ \
153 -version-info $(VERSION_MAJOR):$(VERSION_MINOR):$(VERSION_SUB) \
154 -rpath $(prefix)/lib `cat objlist` -lc -lm
156 i77:
157 cd libI77; $(MAKE) $(FLAGS_TO_PASS) all
159 f77:
160 cd libF77; $(MAKE) $(FLAGS_TO_PASS) all
162 u77:
163 cd libU77; $(MAKE) $(FLAGS_TO_PASS) all
165 s-libe77: f2cext.c
166 if [ -d libE77 ]; then rm -f libE77/*.o libE77/*.lo; else mkdir libE77; fi
167 for name in $(F2CEXT); \
168 do \
169 echo $${name}; \
170 $(LIBTOOL) --mode=compile $(CC) -c -I. -I$(srcdir) -I../../include \
171 $(CPPFLAGS) $(CFLAGS) -DL$${name} $(srcdir)/f2cext.c \
172 -o libE77/L$${name}.o ; \
173 if [ $$? -eq 0 ] ; then true; else exit 1; fi; \
174 done
175 echo timestamp >s-libe77
177 f2cext.c: g2c.h
179 ${srcdir}/configure: configure.in
180 rm -f config.cache
181 cd $(srcdir) && autoconf
183 # Dependence on Makefile serializes for parallel make.
184 g2c.h: g2c.hin config.status Makefile
185 # Might try to avoid rebuilding everything if Makefile or configure
186 # changes and g2c.h doesn't; see also the Makefile rule. Should
187 # depend on another stamp file rather than using the commented-out
188 # lines below, since g2c.h isn't necessarily brought up to date.
189 # mv g2c.h g2c.x
190 $(SHELL) config.status
191 # $(SHELL) $(srcdir)/../move-if-change g2c.h g2c.x && mv g2c.x g2c.h
193 Makefile: Makefile.in config.status
194 # Autoconf doc uses `./config.status'. Is there a good reason to use $(SHELL)?
195 $(SHELL) config.status
197 config.status: configure $(gcc_version_trigger)
198 # Make sure we don't pick up a site config file and that configure
199 # gets run with correct values of variables such as CC.
200 CONFIG_SITE=no-such-file $(FLAGS_TO_PASS) \
201 $(SHELL) config.status --recheck
203 info install-info clean-info dvi TAGS dist installcheck installdirs:
205 check:
206 cd libU77; $(MAKE) G77DIR=../../../gcc/ check
208 install: all
209 $(LIBTOOL) --mode=install $(INSTALL_DATA) $(LIBG2C) $(libsubdir)/$(MULTISUBDIR)
210 (cd $(libsubdir)/$(MULTISUBDIR) ; \
211 if [ -f $(LIBG2C_BASE).so ]; then \
212 mv $(LIBG2C_BASE).so* $(prefix)/lib ;\
214 $(INSTALL_DATA) libfrtbegin.a $(libsubdir)/$(MULTISUBDIR)
215 $(RANLIB) $(libsubdir)/$(MULTISUBDIR)/libfrtbegin.a
216 $(INSTALL_DATA) g2c.h $(libsubdir)/include/g2c.h
217 @if [ -f f2c-install-ok -o -f $(srcdir)/f2c-install-ok ]; then \
218 echo ''; \
219 echo 'Warning: g77 no longer installs libf2c.a or f2c.h.'; \
220 echo ' You must do so yourself. For more information,'; \
221 echo ' read "Distributing Binaries" in the g77 docs.'; \
222 echo ' (To turn off this warning, delete the file'; \
223 echo ' f2c-install-ok in the source or build directory.)'; \
224 echo ''; \
225 else true; fi
226 $(MULTIDO) $(FLAGS_TO_PASS) multi-do DO="$@"
227 @-$(LIBTOOL) --mode=finish $(prefix)/lib
229 install-strip:
230 $(MAKE) INSTALL_PROGRAM='$(INSTALL_PROGRAM) -s' install
232 uninstall:
233 rm -f $(libsubdir)/$(MULTISUBDIR)/include/g2c.h $(libsubdir)/$(MULTISUBDIR)/$(LIBG2C_BASE).*
234 rm -f $(prefix)/lib/$(LIBG2C_BASE).so*
235 $(MULTIDO) $(FLAGS_TO_PASS) multi-do DO="$@"
237 mostlyclean:
238 rm -f $(LIBG2C) objlist
239 $(MAKE) DO=$@ DODIRS="$(SUBDIRS)" $(FLAGS_TO_PASS) subdir_do; \
240 $(MULTICLEAN) multi-clean DO=$@
241 rm -fr libE77 s-libe77
243 clean: mostlyclean
244 rm -f config.log
245 $(MAKE) DO=$@ DODIRS="$(SUBDIRS)" $(FLAGS_TO_PASS) subdir_do; \
246 $(MULTICLEAN) multi-clean DO=$@
247 rm -rf .libs
249 distclean: clean
250 rm -f g2c.h s-libe77
251 $(MAKE) DO=$@ DODIRS="$(SUBDIRS)" $(FLAGS_TO_PASS) subdir_do; \
252 $(MULTICLEAN) multi-clean DO=distclean
253 rm -f config.cache config.status Makefile
255 maintainer-clean:
257 rebuilt: configure
259 .PHONY: rebuilt mostlyclean clean distclean maintainer-clean all \
260 i77 f77 u77 check uninstall install-strip dist \
261 installcheck installdirs all-unilib
263 subdir_do:
264 @rootpre=`pwd`/; export rootpre; \
265 srcrootpre=`cd $(srcdir); pwd`/; export srcrootpre; \
266 for i in .. $(DODIRS); do \
267 if [ x$$i != x.. ]; then \
268 if [ -f ./$$i/Makefile ]; then \
269 if (cd ./$$i; $(MAKE) $(FLAGS_TO_PASS) $(DO)); then \
270 true; \
271 else \
272 exit 1; \
273 fi; \
274 else true; fi; \
275 else true; fi; \
276 done
278 # multidoings may be added here by configure.