]> gcc.gnu.org Git - gcc.git/blame - gcc/f/runtime/libI77/Makefile.in
Makefile.in (CGFLAGS): Don't force -g0.
[gcc.git] / gcc / f / runtime / libI77 / Makefile.in
CommitLineData
5ff904cd
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
31# The _FOR_TARGET things are appropriate for a cross-make, passed by the
32# superior makefile
33GCC_FOR_TARGET = @CC@
34CC = $(GCC_FOR_TARGET)
35CFLAGS = @CFLAGS@ $(GCC_FLAGS)
36CPPFLAGS = @CPPFLAGS@
37DEFS = @DEFS@
7e9e3823 38CGFLAGS = #-g0
5ff904cd
JL
39# f2c.h should already be installed in xgcc's include directory but add that
40# to -I anyhow in case not using xgcc.
41ALL_CFLAGS = -I. -I$(srcdir) -I../../../include $(CPPFLAGS) $(DEFS) $(CFLAGS)
42AR = @AR@
43AR_FLAGS = rc
44RANLIB = @RANLIB@
45RANLIB_TEST = @RANLIB_TEST@
46CROSS = @CROSS@
47
48.SUFFIXES:
49.SUFFIXES: .c .o
50
51.c.o:
52 $(CC) -c -DSkip_f2c_Undefs -DAllow_TYQUAD $(ALL_CFLAGS) $(CGFLAGS) $<
53
54OBJ = VersionI.o backspace.o close.o dfe.o dolio.o due.o endfile.o err.o \
55 fmt.o fmtlib.o iio.o ilnw.o inquire.o lread.o lwrite.o open.o \
56 rdfmt.o rewind.o rsfe.o rsli.o rsne.o sfe.o sue.o typesize.o uio.o \
57 util.o wref.o wrtfmt.o wsfe.o wsle.o wsne.o xwsne.o \
58 ftell_.o
59
60F2C_H = ../../../include/f2c.h
61
62all: $(OBJ)
63
64VersionI.o: Version.c
65 $(CC) -c $(CGFLAGS) -o $@ $(srcdir)/Version.c
66
67mostlyclean clean:
68 -rm -f $(OBJ)
69
70distclean maintainer-clean: mostlyclean
71 -rm -f stage? include Makefile
72
73backspace.o: fio.h
74close.o: fio.h
75dfe.o: fio.h
76dfe.o: fmt.h
77due.o: fio.h
78endfile.o: fio.h rawio.h
79err.o: fio.h rawio.h
80fmt.o: fio.h
81fmt.o: fmt.h
82ftell_.o: fio.h
83iio.o: fio.h
84iio.o: fmt.h
85ilnw.o: fio.h
86ilnw.o: lio.h
87inquire.o: fio.h
88lread.o: fio.h
89lread.o: fmt.h
90lread.o: lio.h
91lread.o: fp.h
92lwrite.o: fio.h
93lwrite.o: fmt.h
94lwrite.o: lio.h
95open.o: fio.h rawio.h
96rdfmt.o: fio.h
97rdfmt.o: fmt.h
98rdfmt.o: fp.h
99rewind.o: fio.h
100rsfe.o: fio.h
101rsfe.o: fmt.h
102rsli.o: fio.h
103rsli.o: lio.h
104rsne.o: fio.h
105rsne.o: lio.h
106sfe.o: fio.h
107sue.o: fio.h
108uio.o: fio.h
109util.o: fio.h
110wref.o: fio.h
111wref.o: fmt.h
112wref.o: fp.h
113wrtfmt.o: fio.h
114wrtfmt.o: fmt.h
115wsfe.o: fio.h
116wsfe.o: fmt.h
117wsle.o: fio.h
118wsle.o: fmt.h
119wsle.o: lio.h
120wsne.o: fio.h
121wsne.o: lio.h
122xwsne.o: fio.h
123xwsne.o: lio.h
124xwsne.o: fmt.h
125
126# May be pessimistic:
127$(OBJ): $(F2C_H)
128
129.PHONY: mostlyclean clean distclean maintainer-clean all
This page took 0.073662 seconds and 5 git commands to generate.