158 lines
3.6 KiB
Makefile
158 lines
3.6 KiB
Makefile
|
# Makefile for GNU F77 compiler runtime.
|
||
|
# Copyright 1990 - 1994 by AT&T Bell Laboratories and Bellcore (see the
|
||
|
# file `Notice').
|
||
|
# Portions of this file Copyright (C) 1995, 1996, 1998 Free Software Foundation, Inc.
|
||
|
# Contributed by Dave Love (d.love@dl.ac.uk).
|
||
|
#
|
||
|
#This file is part of GNU Fortran.
|
||
|
#
|
||
|
#GNU Fortran is free software; you can redistribute it and/or modify
|
||
|
#it under the terms of the GNU General Public License as published by
|
||
|
#the Free Software Foundation; either version 2, or (at your option)
|
||
|
#any later version.
|
||
|
#
|
||
|
#GNU Fortran is distributed in the hope that it will be useful,
|
||
|
#but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
#GNU General Public License for more details.
|
||
|
#
|
||
|
#You should have received a copy of the GNU General Public License
|
||
|
#along with GNU Fortran; see the file COPYING. If not, write to
|
||
|
#the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
|
||
|
#02111-1307, USA.
|
||
|
|
||
|
#### Start of system configuration section. ####
|
||
|
|
||
|
# $(srcdir) must be set to the g77 runtime libI77 source directory.
|
||
|
srcdir = @srcdir@
|
||
|
VPATH = @srcdir@
|
||
|
|
||
|
# configure sets this to all the -D options appropriate for the
|
||
|
# configuration.
|
||
|
DEFS = @DEFS@
|
||
|
|
||
|
LIBG2C = ../libg2c.a
|
||
|
|
||
|
F2C_H_DIR = @srcdir@/..
|
||
|
G2C_H_DIR = ..
|
||
|
CC = @CC@
|
||
|
CFLAGS = @CFLAGS@
|
||
|
CPPFLAGS = @CPPFLAGS@
|
||
|
AR = @AR@
|
||
|
ARFLAGS = rc
|
||
|
@SET_MAKE@
|
||
|
|
||
|
SHELL = /bin/sh
|
||
|
|
||
|
#### End of system configuration section. ####
|
||
|
|
||
|
ALL_CFLAGS = -I. -I$(srcdir) -I$(G2C_H_DIR) -I$(F2C_H_DIR) $(CPPFLAGS) \
|
||
|
$(DEFS) $(CFLAGS)
|
||
|
|
||
|
.SUFFIXES:
|
||
|
.SUFFIXES: .c .o
|
||
|
|
||
|
.c.o:
|
||
|
$(CC) -c -DSkip_f2c_Undefs -DAllow_TYQUAD $(ALL_CFLAGS) $<
|
||
|
|
||
|
OBJ = VersionI.o backspace.o close.o dfe.o dolio.o due.o endfile.o err.o \
|
||
|
fmt.o fmtlib.o iio.o ilnw.o inquire.o lread.o lwrite.o open.o \
|
||
|
rdfmt.o rewind.o rsfe.o rsli.o rsne.o sfe.o sue.o typesize.o uio.o \
|
||
|
util.o wref.o wrtfmt.o wsfe.o wsle.o wsne.o xwsne.o \
|
||
|
ftell_.o
|
||
|
|
||
|
all: ../s-libi77
|
||
|
|
||
|
../s-libi77: $(OBJ)
|
||
|
echo timestamp > ../s-libi77
|
||
|
|
||
|
archive:
|
||
|
$(AR) $(ARFLAGS) $(LIBG2C) $(OBJ)
|
||
|
|
||
|
Makefile: Makefile.in config.status
|
||
|
$(SHELL) config.status
|
||
|
|
||
|
config.status: configure
|
||
|
rm -f config.cache
|
||
|
CONFIG_SITE=no-such-file CC='$(CC)' AR='$(AR)' CFLAGS='$(CFLAGS)' \
|
||
|
CPPFLAGS='$(CPPFLAGS)' $(SHELL) config.status --recheck
|
||
|
|
||
|
${srcdir}/configure: configure.in
|
||
|
rm -f config.cache
|
||
|
cd ${srcdir} && autoconf
|
||
|
|
||
|
VersionI.o: Version.c
|
||
|
$(CC) -c $(ALL_CFLAGS) -o $@ $(srcdir)/Version.c
|
||
|
|
||
|
backspace.o: fio.h
|
||
|
close.o: fio.h
|
||
|
dfe.o: fio.h
|
||
|
dfe.o: fmt.h
|
||
|
due.o: fio.h
|
||
|
endfile.o: fio.h rawio.h
|
||
|
err.o: fio.h rawio.h
|
||
|
fmt.o: fio.h
|
||
|
fmt.o: fmt.h
|
||
|
ftell_.o: fio.h
|
||
|
iio.o: fio.h
|
||
|
iio.o: fmt.h
|
||
|
ilnw.o: fio.h
|
||
|
ilnw.o: lio.h
|
||
|
inquire.o: fio.h
|
||
|
lread.o: fio.h
|
||
|
lread.o: fmt.h
|
||
|
lread.o: lio.h
|
||
|
lread.o: fp.h
|
||
|
lwrite.o: fio.h
|
||
|
lwrite.o: fmt.h
|
||
|
lwrite.o: lio.h
|
||
|
open.o: fio.h rawio.h
|
||
|
rdfmt.o: fio.h
|
||
|
rdfmt.o: fmt.h
|
||
|
rdfmt.o: fp.h
|
||
|
rewind.o: fio.h
|
||
|
rsfe.o: fio.h
|
||
|
rsfe.o: fmt.h
|
||
|
rsli.o: fio.h
|
||
|
rsli.o: lio.h
|
||
|
rsne.o: fio.h
|
||
|
rsne.o: lio.h
|
||
|
sfe.o: fio.h
|
||
|
sue.o: fio.h
|
||
|
uio.o: fio.h
|
||
|
util.o: fio.h
|
||
|
wref.o: fio.h
|
||
|
wref.o: fmt.h
|
||
|
wref.o: fp.h
|
||
|
wrtfmt.o: fio.h
|
||
|
wrtfmt.o: fmt.h
|
||
|
wsfe.o: fio.h
|
||
|
wsfe.o: fmt.h
|
||
|
wsle.o: fio.h
|
||
|
wsle.o: fmt.h
|
||
|
wsle.o: lio.h
|
||
|
wsne.o: fio.h
|
||
|
wsne.o: lio.h
|
||
|
xwsne.o: fio.h
|
||
|
xwsne.o: lio.h
|
||
|
xwsne.o: fmt.h
|
||
|
|
||
|
# May be pessimistic:
|
||
|
$(OBJ): $(F2C_H_DIR)/f2c.h $(G2C_H_DIR)/g2c.h
|
||
|
|
||
|
check install uninstall install-strip dist installcheck installdirs:
|
||
|
|
||
|
mostlyclean:
|
||
|
rm -f *.o
|
||
|
|
||
|
clean: mostlyclean
|
||
|
rm -f config.log
|
||
|
|
||
|
distclean: clean
|
||
|
rm -f config.cache config.status Makefile ../s-libi77 configure
|
||
|
|
||
|
maintainer-clean:
|
||
|
|
||
|
.PHONY: mostlyclean clean distclean maintainer-clean all check uninstall \
|
||
|
install-strip dist installcheck installdirs archive
|