OSDN Git Service

* Makefile.in: stamp-lib* -> s-lib*.
[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 LIBG2C = ../libg2c.a
35
36 F2C_H_DIR = @srcdir@/..
37 G2C_H_DIR = ..
38 CC = @CC@
39 CFLAGS = @CFLAGS@
40 CPPFLAGS = @CPPFLAGS@
41 AR = @AR@
42 ARFLAGS = rc
43 @SET_MAKE@
44
45 SHELL = /bin/sh
46
47 #### End of system configuration section. ####
48
49 ALL_CFLAGS = -I. -I$(srcdir) -I$(G2C_H_DIR) -I$(F2C_H_DIR) $(CPPFLAGS) $(DEFS) $(CFLAGS)
50
51 .SUFFIXES:
52 .SUFFIXES: .c .o
53
54 .c.o:
55         $(CC) -c -DSkip_f2c_Undefs $(ALL_CFLAGS) $<
56
57 MISC =  F77_aloc.o VersionF.o main.o s_rnge.o abort_.o getarg_.o iargc_.o\
58         getenv_.o signal_.o s_stop.o s_paus.o system_.o cabs.o\
59         derf_.o derfc_.o erf_.o erfc_.o sig_die.o exit_.o setarg.o setsig.o
60 POW =   pow_ci.o pow_dd.o pow_di.o pow_hh.o pow_ii.o  pow_ri.o pow_zi.o pow_zz.o \
61         pow_qq.o
62 CX =    c_abs.o c_cos.o c_div.o c_exp.o c_log.o c_sin.o c_sqrt.o
63 DCX =   z_abs.o z_cos.o z_div.o z_exp.o z_log.o z_sin.o z_sqrt.o
64 REAL =  r_abs.o r_acos.o r_asin.o r_atan.o r_atn2.o r_cnjg.o r_cos.o\
65         r_cosh.o r_dim.o r_exp.o r_imag.o r_int.o\
66         r_lg10.o r_log.o r_mod.o r_nint.o r_sign.o\
67         r_sin.o r_sinh.o r_sqrt.o r_tan.o r_tanh.o
68 DBL =   d_abs.o d_acos.o d_asin.o d_atan.o d_atn2.o\
69         d_cnjg.o d_cos.o d_cosh.o d_dim.o d_exp.o\
70         d_imag.o d_int.o d_lg10.o d_log.o d_mod.o\
71         d_nint.o d_prod.o d_sign.o d_sin.o d_sinh.o\
72         d_sqrt.o d_tan.o d_tanh.o
73 INT =   i_abs.o i_dim.o i_dnnt.o i_indx.o i_len.o i_mod.o i_nint.o i_sign.o
74 HALF =  h_abs.o h_dim.o h_dnnt.o h_indx.o h_len.o h_mod.o  h_nint.o h_sign.o
75 CMP =   l_ge.o l_gt.o l_le.o l_lt.o hl_ge.o hl_gt.o hl_le.o hl_lt.o
76 EFL =   ef1asc_.o ef1cmc_.o
77 CHAR =  s_cat.o s_cmp.o s_copy.o
78 F90BIT = lbitbits.o lbitshft.o qbitbits.o qbitshft.o
79
80 OBJS = $(MISC) $(POW) $(CX) $(DCX) $(REAL) $(DBL) $(INT) \
81          $(HALF) $(CMP) $(EFL) $(CHAR) $(F90BIT)
82
83 all: ../s-libf77
84
85 ../s-libf77: $(OBJS)
86         echo timestamp > ../s-libf77
87
88 archive:
89         $(AR) $(ARFLAGS) $(LIBG2C) $(OBJS)
90
91 Makefile: Makefile.in config.status
92         $(SHELL) config.status
93
94 config.status: configure
95         rm -f config.cache
96         CONFIG_SITE=no-such-file CC='$(CC)' AR='$(AR)' CFLAGS='$(CFLAGS)' \
97           CPPFLAGS='$(CPPFLAGS)' $(SHELL) config.status --recheck
98
99 ${srcdir}/configure: configure.in
100         rm -f config.cache
101         cd ${srcdir} && autoconf
102
103 VersionF.o: Version.c
104         $(CC) -c $(ALL_CFLAGS) -o $@ $(srcdir)/Version.c
105
106 # Not quite all these actually do depend on f2c.h...
107 $(MISC) $(POW) $(CX) $(DCX) $(REAL) $(DBL) $(INT) $(HALF) $(CMP) $(EFL) \
108   $(CHAR) $(F90BIT): $(F2C_H_DIR)/f2c.h $(G2C_H_DIR)/g2c.h
109
110 check install uninstall install-strip dist installcheck installdirs:
111
112 mostlyclean:
113         rm -f *.o
114
115 clean: mostlyclean
116         rm -f config.log
117
118 distclean: clean
119         rm -f config.cache config.status Makefile ../s-libf77 configure
120
121 maintainer-clean:
122
123 .PHONY: mostlyclean clean distclean maintainer-clean all check uninstall \
124         install-strip dist installcheck installdirs archive