OSDN Git Service

2001-11-23 Toon Moene <toon@moene.indiv.nluug.nl>
[pf3gnuchains/gcc-fork.git] / libf2c / libF77 / Makefile.in
1 # Makefile for GNU F77 compiler runtime.
2 # Copyright 1990 - 1994 by AT&T Bell Laboratories and Bellcore (see the
3 # file `Notice').
4 # Portions of this file Copyright (C) 1995-1998 Free Software Foundation, Inc.
5 #   Contributed by Dave Love (d.love@dl.ac.uk).
6 #
7 #This file is part of GNU Fortran.
8 #
9 #GNU Fortran is free software; you can redistribute it and/or modify
10 #it under the terms of the GNU General Public License as published by
11 #the Free Software Foundation; either version 2, or (at your option)
12 #any later version.
13 #
14 #GNU Fortran is distributed in the hope that it will be useful,
15 #but WITHOUT ANY WARRANTY; without even the implied warranty of
16 #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 #GNU General Public License for more details.
18 #
19 #You should have received a copy of the GNU General Public License
20 #along with GNU Fortran; see the file COPYING.  If not, write to
21 #the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
22 #02111-1307, USA.
23
24 #### Start of system configuration section. ####
25
26 # $(srcdir) must be set to the g77 runtime libF77 source directory.
27 srcdir = @srcdir@
28 VPATH = @srcdir@
29
30 # configure sets this to all the -D options appropriate for the
31 # configuration.
32 DEFS = @DEFS@
33
34 F2C_H_DIR = @srcdir@/..
35 G2C_H_DIR = ..
36 CC = @CC@
37 CFLAGS = @CFLAGS@
38 CPPFLAGS = @CPPFLAGS@
39 AR = @AR@
40 ARFLAGS = rc
41 @SET_MAKE@
42
43 SHELL = /bin/sh
44
45 #### End of system configuration section. ####
46
47 ALL_CFLAGS = -I. -I$(srcdir) -I$(G2C_H_DIR) -I$(F2C_H_DIR) $(CPPFLAGS) $(DEFS) $(CFLAGS)
48
49 .SUFFIXES:
50 .SUFFIXES: .c .lo
51
52 .c.lo:
53         @LIBTOOL@ --mode=compile $(CC) -c -DSkip_f2c_Undefs $(ALL_CFLAGS) $<
54
55 LINK = @LIBTOOL@ --mode=link $(CC) -o $@
56
57 MISC =  F77_aloc.lo VersionF.lo s_rnge.lo abort_.lo getarg_.lo iargc_.lo\
58         getenv_.lo signal_.lo s_stop.lo s_paus.lo system_.lo cabs.lo\
59         derf_.lo derfc_.lo erf_.lo erfc_.lo sig_die.lo exit_.lo setarg.lo setsig.lo
60 POW =   pow_ci.lo pow_dd.lo pow_di.lo pow_hh.lo pow_ii.lo  pow_ri.lo pow_zi.lo pow_zz.lo \
61         pow_qq.lo
62 CX =    c_abs.lo c_cos.lo c_div.lo c_exp.lo c_log.lo c_sin.lo c_sqrt.lo
63 DCX =   z_abs.lo z_cos.lo z_div.lo z_exp.lo z_log.lo z_sin.lo z_sqrt.lo
64 REAL =  r_abs.lo r_acos.lo r_asin.lo r_atan.lo r_atn2.lo r_cnjg.lo r_cos.lo\
65         r_cosh.lo r_dim.lo r_exp.lo r_imag.lo r_int.lo\
66         r_lg10.lo r_log.lo r_mod.lo r_nint.lo r_sign.lo\
67         r_sin.lo r_sinh.lo r_sqrt.lo r_tan.lo r_tanh.lo
68 DBL =   d_abs.lo d_acos.lo d_asin.lo d_atan.lo d_atn2.lo\
69         d_cnjg.lo d_cos.lo d_cosh.lo d_dim.lo d_exp.lo\
70         d_imag.lo d_int.lo d_lg10.lo d_log.lo d_mod.lo\
71         d_nint.lo d_prod.lo d_sign.lo d_sin.lo d_sinh.lo\
72         d_sqrt.lo d_tan.lo d_tanh.lo
73 INT =   i_abs.lo i_dim.lo i_dnnt.lo i_indx.lo i_len.lo i_mod.lo i_nint.lo i_sign.lo
74 HALF =  h_abs.lo h_dim.lo h_dnnt.lo h_indx.lo h_len.lo h_mod.lo  h_nint.lo h_sign.lo
75 CMP =   l_ge.lo l_gt.lo l_le.lo l_lt.lo hl_ge.lo hl_gt.lo hl_le.lo hl_lt.lo
76 EFL =   ef1asc_.lo ef1cmc_.lo
77 CHAR =  s_cat.lo s_cmp.lo s_copy.lo
78 F90BIT = lbitbits.lo lbitshft.lo qbitbits.lo qbitshft.lo
79
80 OBJS = $(MISC) $(POW) $(CX) $(DCX) $(REAL) $(DBL) $(INT) \
81          $(HALF) $(CMP) $(EFL) $(CHAR) $(F90BIT)
82
83 all: ../libF77.la ../libfrtbegin.a
84
85 ../libF77.la: $(OBJS)
86         $(LINK) $(OBJS)
87
88 Makefile: Makefile.in config.status
89         $(SHELL) config.status
90
91 config.status: configure
92         rm -f config.cache
93         CONFIG_SITE=no-such-file CC='$(CC)' AR='$(AR)' CFLAGS='$(CFLAGS)' \
94           CPPFLAGS='$(CPPFLAGS)' $(SHELL) config.status --recheck
95
96 ${srcdir}/configure: configure.in
97         rm -f config.cache
98         cd ${srcdir} && autoconf
99
100 VersionF.lo: Version.c
101         @LIBTOOL@ --mode=compile $(CC) -c $(ALL_CFLAGS) $(srcdir)/Version.c -o $@
102
103 frtbegin.o : main.c
104         $(CC) -c $(ALL_CFLAGS) $(srcdir)/main.c -o $@
105
106 ../libfrtbegin.a: frtbegin.o
107         $(AR) $(ARFLAGS) $@ $<
108         $(RANLIB) $@
109
110 F77_aloc.lo: F77_aloc.c
111 s_rnge.lo: s_rnge.c
112 abort_.lo: abort_.c
113 getarg_.lo: getarg_.c
114 iargc_.lo: iargc_.c
115 getenv_.lo: getenv_.c
116 signal_.lo: signal_.c
117 s_stop.lo: s_stop.c
118 s_paus.lo: s_paus.c
119 system_.lo: system_.c
120 cabs.lo: cabs.c
121 derf_.lo: derf_.c
122 derfc_.lo: derfc_.c
123 erf_.lo: erf_.c
124 erfc_.lo: erfc_.c
125 sig_die.lo: sig_die.c
126 exit_.lo: exit_.c
127 setarg.lo: setarg.c
128 setsig.lo: setsig.c
129 pow_ci.lo: pow_ci.c
130 pow_dd.lo: pow_dd.c
131 pow_di.lo: pow_di.c
132 pow_hh.lo: pow_hh.c
133 pow_ii.lo: pow_ii.c
134 pow_ri.lo:  pow_ri.c
135 pow_zi.lo: pow_zi.c
136 pow_zz.lo: pow_zz.c
137 pow_qq.lo:  pow_qq.c
138 c_abs.lo: c_abs.c
139 c_cos.lo: c_cos.c
140 c_div.lo: c_div.c
141 c_exp.lo: c_exp.c
142 c_log.lo: c_log.c
143 c_sin.lo: c_sin.c
144 c_sqrt.lo: c_sqrt.c
145 z_abs.lo: z_abs.c
146 z_cos.lo: z_cos.c
147 z_div.lo: z_div.c
148 z_exp.lo: z_exp.c
149 z_log.lo: z_log.c
150         @LIBTOOL@ --mode=compile $(CC) -c -DSkip_f2c_Undefs $(ALL_CFLAGS) -ffloat-store $<
151 z_sin.lo: z_sin.c
152 z_sqrt.lo: z_sqrt.c
153 r_abs.lo: r_abs.c
154 r_acos.lo: r_acos.c
155 r_asin.lo: r_asin.c
156 r_atan.lo: r_atan.c
157 r_atn2.lo: r_atn2.c
158 r_cnjg.lo: r_cnjg.c
159 r_cos.lo: r_cos.c
160 r_cosh.lo: r_cosh.c
161 r_dim.lo: r_dim.c
162 r_exp.lo: r_exp.c
163 r_imag.lo: r_imag.c
164 r_int.lo: r_int.c
165 r_lg10.lo: r_lg10.c
166 r_log.lo: r_log.c
167 r_mod.lo: r_mod.c
168 r_nint.lo: r_nint.c
169 r_sign.lo: r_sign.c
170 r_sin.lo: r_sin.c
171 r_sinh.lo: r_sinh.c
172 r_sqrt.lo: r_sqrt.c
173 r_tan.lo: r_tan.c
174 r_tanh.lo: r_tanh.c
175 d_abs.lo: d_abs.c
176 d_acos.lo: d_acos.c
177 d_asin.lo: d_asin.c
178 d_atan.lo: d_atan.c
179 d_atn2.lo: d_atn2.c
180 d_cnjg.lo: d_cnjg.c
181 d_cos.lo: d_cos.c
182 d_cosh.lo: d_cosh.c
183 d_dim.lo: d_dim.c
184 d_exp.lo: d_exp.c
185 d_imag.lo: d_imag.c
186 d_int.lo: d_int.c
187 d_lg10.lo: d_lg10.c
188 d_log.lo: d_log.c
189 d_mod.lo: d_mod.c
190 d_nint.lo: d_nint.c
191 d_prod.lo: d_prod.c
192 d_sign.lo: d_sign.c
193 d_sin.lo: d_sin.c
194 d_sinh.lo: d_sinh.c
195 d_sqrt.lo: d_sqrt.c
196 d_tan.lo: d_tan.c
197 d_tanh.lo: d_tanh.c
198 i_abs.lo: i_abs.c
199 i_dim.lo: i_dim.c
200 i_dnnt.lo: i_dnnt.c
201 i_indx.lo: i_indx.c
202 i_len.lo: i_len.c
203 i_mod.lo: i_mod.c
204 i_nint.lo: i_nint.c
205 i_sign.lo: i_sign.c
206 h_abs.lo:  h_abs.c
207 h_dim.lo: h_dim.c
208 h_dnnt.lo: h_dnnt.c
209 h_indx.lo: h_indx.c
210 h_len.lo: h_len.c
211 h_mod.lo: h_mod.c
212 h_nint.lo:  h_nint.c
213 h_sign.lo: h_sign.c
214 l_ge.lo: l_ge.c
215 l_gt.lo: l_gt.c
216 l_le.lo: l_le.c
217 l_lt.lo: l_lt.c
218 hl_ge.lo: hl_ge.c
219 hl_gt.lo: hl_gt.c
220 hl_le.lo: hl_le.c
221 hl_lt.lo: hl_lt.c
222 ef1asc_.lo: ef1asc_.c
223 ef1cmc_.lo: ef1cmc_.c
224 s_cat.lo: s_cat.c
225 s_cmp.lo: s_cmp.c
226 s_copy.lo: s_copy.c
227 lbitbits.lo: lbitbits.c
228 lbitshft.lo: lbitshft.c
229 qbitbits.lo: qbitbits.c
230 qbitshft.lo: qbitshft.c
231
232 # Not quite all these actually do depend on f2c.h...
233 $(MISC) $(POW) $(CX) $(DCX) $(REAL) $(DBL) $(INT) $(HALF) $(CMP) $(EFL) \
234   $(CHAR) $(F90BIT): $(F2C_H_DIR)/f2c.h $(G2C_H_DIR)/g2c.h
235
236 check install uninstall install-strip dist installcheck installdirs:
237
238 mostlyclean:
239         rm -f *.o *.lo ../libfrtbegin.a
240         rm -rf .libs
241
242 clean: mostlyclean
243         rm -f config.log
244         rm -f ../libF77.la
245
246 distclean: clean
247         rm -f config.cache config.status Makefile ../libF77.la configure
248
249 maintainer-clean:
250
251 .PHONY: mostlyclean clean distclean maintainer-clean all check uninstall \
252         install-strip dist installcheck installdirs archive