]> gcc.gnu.org Git - gcc.git/blame - libf2c/libI77/Makefile.in
Restore circa-0.5.22 capabilities of `g77' driver:
[gcc.git] / libf2c / libI77 / Makefile.in
CommitLineData
81fea2b1
JL
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, 1996 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
24SHELL = /bin/sh
25
26srcdir = @srcdir@
27VPATH = @srcdir@
28
29#### Start of system configuration section. ####
30
31CPPFLAGS = @CPPFLAGS@
32DEFS = @DEFS@
33# f2c.h should already be installed in xgcc's include directory but add that
34# to -I anyhow in case not using xgcc.
35ALL_CFLAGS = -I. -I$(srcdir) -I.. $(CPPFLAGS) $(DEFS) $(CFLAGS)
36CROSS = @CROSS@
37
38.SUFFIXES:
39.SUFFIXES: .c .o
40
41.c.o:
42 $(CC) -c -DSkip_f2c_Undefs -DAllow_TYQUAD $(ALL_CFLAGS) $<
43
44OBJ = VersionI.o backspace.o close.o dfe.o dolio.o due.o endfile.o err.o \
45 fmt.o fmtlib.o iio.o ilnw.o inquire.o lread.o lwrite.o open.o \
46 rdfmt.o rewind.o rsfe.o rsli.o rsne.o sfe.o sue.o typesize.o uio.o \
47 util.o wref.o wrtfmt.o wsfe.o wsle.o wsne.o xwsne.o \
48 ftell_.o
49
50F2C_H = ../f2c.h
51
52all: $(OBJ)
53
54VersionI.o: Version.c
55 $(CC) -c $(CGFLAGS) -o $@ $(srcdir)/Version.c
56
57mostlyclean clean:
58 -rm -f $(OBJ)
59
60distclean maintainer-clean: mostlyclean
61 -rm -f stage? include Makefile
62
63backspace.o: fio.h
64close.o: fio.h
65dfe.o: fio.h
66dfe.o: fmt.h
67due.o: fio.h
68endfile.o: fio.h rawio.h
69err.o: fio.h rawio.h
70fmt.o: fio.h
71fmt.o: fmt.h
72ftell_.o: fio.h
73iio.o: fio.h
74iio.o: fmt.h
75ilnw.o: fio.h
76ilnw.o: lio.h
77inquire.o: fio.h
78lread.o: fio.h
79lread.o: fmt.h
80lread.o: lio.h
81lread.o: fp.h
82lwrite.o: fio.h
83lwrite.o: fmt.h
84lwrite.o: lio.h
85open.o: fio.h rawio.h
86rdfmt.o: fio.h
87rdfmt.o: fmt.h
88rdfmt.o: fp.h
89rewind.o: fio.h
90rsfe.o: fio.h
91rsfe.o: fmt.h
92rsli.o: fio.h
93rsli.o: lio.h
94rsne.o: fio.h
95rsne.o: lio.h
96sfe.o: fio.h
97sue.o: fio.h
98uio.o: fio.h
99util.o: fio.h
100wref.o: fio.h
101wref.o: fmt.h
102wref.o: fp.h
103wrtfmt.o: fio.h
104wrtfmt.o: fmt.h
105wsfe.o: fio.h
106wsfe.o: fmt.h
107wsle.o: fio.h
108wsle.o: fmt.h
109wsle.o: lio.h
110wsne.o: fio.h
111wsne.o: lio.h
112xwsne.o: fio.h
113xwsne.o: lio.h
114xwsne.o: fmt.h
115
116# May be pessimistic:
117$(OBJ): $(F2C_H)
118
119.PHONY: mostlyclean clean distclean maintainer-clean all
This page took 0.061816 seconds and 5 git commands to generate.