1998-02-01 02:37:08 +01:00
|
|
|
# Makefile for GNU F77 compiler runtime.
|
2002-01-04 07:22:49 +01:00
|
|
|
# Copyright (C) 1995-1998, 2001, 2002 Free Software Foundation, Inc.
|
1998-02-01 02:37:08 +01:00
|
|
|
# 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.
|
|
|
|
|
|
|
|
SHELL = /bin/sh
|
2001-11-16 22:29:29 +01:00
|
|
|
MAKEOVERRIDES=
|
1998-02-01 02:37:08 +01:00
|
|
|
|
|
|
|
#### Start of system configuration section. ####
|
|
|
|
|
|
|
|
srcdir = @srcdir@
|
1998-07-12 07:02:03 +02:00
|
|
|
VPATH = @srcdir@
|
1998-02-01 02:37:08 +01:00
|
|
|
prefix = @prefix@
|
|
|
|
exec_prefix = @exec_prefix@
|
1998-06-21 02:28:48 +02:00
|
|
|
target_alias = @target_alias@
|
1998-06-24 08:16:19 +02:00
|
|
|
gcc_version = @gcc_version@
|
1998-06-26 04:13:51 +02:00
|
|
|
gcc_version_trigger = @gcc_version_trigger@
|
1998-02-01 02:37:08 +01:00
|
|
|
|
2001-10-01 00:06:23 +02:00
|
|
|
top_builddir = .
|
|
|
|
|
1998-02-01 02:37:08 +01:00
|
|
|
libdir = $(exec_prefix)/lib
|
1998-06-24 08:16:19 +02:00
|
|
|
libsubdir = $(libdir)/gcc-lib/$(target_alias)/$(gcc_version)
|
2001-10-01 00:06:23 +02:00
|
|
|
#
|
2001-10-01 08:30:39 +02:00
|
|
|
# Versions should start at 0:0:0 - See libtool manual.
|
2001-10-01 00:06:23 +02:00
|
|
|
VERSION_MAJOR=0
|
2001-10-01 08:30:39 +02:00
|
|
|
VERSION_MINOR=0
|
2001-10-01 00:06:23 +02:00
|
|
|
VERSION_SUB=0
|
1998-02-01 02:37:08 +01:00
|
|
|
|
1998-09-21 12:34:28 +02:00
|
|
|
# Multilib support variables.
|
|
|
|
MULTISRCTOP =
|
|
|
|
MULTIBUILDTOP =
|
|
|
|
MULTIDIRS =
|
|
|
|
MULTISUBDIR =
|
|
|
|
MULTIDO = true
|
|
|
|
MULTICLEAN = true
|
|
|
|
|
1998-07-12 07:02:03 +02:00
|
|
|
# Not configured per top-level version, since that doesn't get passed
|
2001-10-01 08:30:39 +02:00
|
|
|
# Versions should start at 0:0:0 - See libtool manual.
|
1998-07-12 07:02:03 +02:00
|
|
|
# down at configure time, but overrridden by the top-level install
|
|
|
|
# target.
|
|
|
|
INSTALL = @INSTALL@
|
|
|
|
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
|
|
|
INSTALL_DATA = @INSTALL_DATA@
|
1998-02-01 02:37:08 +01:00
|
|
|
|
2001-10-01 00:06:23 +02:00
|
|
|
LIBTOOL = @LIBTOOL@
|
1998-07-12 07:02:03 +02:00
|
|
|
CC = @CC@
|
|
|
|
CFLAGS = @CFLAGS@
|
Makefile.in (AR, RANLIB): Add, for substitutions.
* Makefile.in (AR, RANLIB): Add, for substitutions.
(all-unilib, $(LIBG2C)): Depend on object lists, not
convenience libraries.
(s-libe77): Renamed from libE77.la; build object list.
(install): Do not move libraries to libdir.
(mostlyclean, clean): Adjust.
* libF77/Makefile.in (RANLIB): Add.
(LINK): Remove.
(../s-libf77): Renamed from ../libF77.la; build object list.
(../libfrtbegin.a): Remove target first. Don't use $<.
(all, clean, distclean): Adjust.
* libF77/configure.in: Substitute RANLIB.
* libF77/configure: Rebuilt.
* libI77/Makefile.in (LINK): Delete.
(../s-libi77): Renamed from ../libI77.la; build object list.
(all, clean, distclean): Adjust.
* libU77/Makefile.in: Likewise.
From-SVN: r47605
2001-12-04 10:53:18 +01:00
|
|
|
AR = @AR@
|
|
|
|
RANLIB = @RANLIB@
|
1998-02-01 02:37:08 +01:00
|
|
|
|
1998-07-12 07:02:03 +02:00
|
|
|
# List of variables to pass to sub-makes.
|
|
|
|
# Quote this way so that it can be used to set shell variables too.
|
1998-02-01 02:37:08 +01:00
|
|
|
FLAGS_TO_PASS= \
|
1998-07-12 07:02:03 +02:00
|
|
|
CC='$(CC)' \
|
2001-10-01 00:06:23 +02:00
|
|
|
LIBTOOL='$(LIBTOOL)' \
|
1998-07-12 07:02:03 +02:00
|
|
|
CFLAGS='$(CFLAGS)' \
|
|
|
|
CPPFLAGS='$(CPPFLAGS)' \
|
2001-10-03 08:10:50 +02:00
|
|
|
AR='$(AR)' \
|
1998-08-27 00:20:34 +02:00
|
|
|
RANLIB='$(RANLIB)' \
|
1999-08-07 07:37:16 +02:00
|
|
|
prefix='$(prefix)' \
|
|
|
|
exec_prefix='$(exec_prefix)' \
|
|
|
|
libdir='$(libdir)' \
|
|
|
|
libsubdir='$(libsubdir)' \
|
|
|
|
tooldir='$(tooldir)'
|
1998-02-01 02:37:08 +01:00
|
|
|
|
2001-10-01 00:06:23 +02:00
|
|
|
LIBG2C_BASE = libg2c
|
|
|
|
LIBG2C = $(LIBG2C_BASE).la
|
1998-02-01 02:37:08 +01:00
|
|
|
|
1998-07-12 07:02:03 +02:00
|
|
|
SUBDIRS = libI77 libF77 libU77
|
1998-02-01 02:37:08 +01:00
|
|
|
|
|
|
|
F2CEXT = abort derf derfc ef1asc ef1cmc erf erfc exit getarg getenv iargc \
|
|
|
|
signal system flush ftell fseek access besj0 besj1 besjn besy0 besy1 \
|
1999-03-06 00:40:12 +01:00
|
|
|
besyn chdir chmod ctime dbesj0 dbesj1 dbesjn dbesy0 dbesy1 dbesyn \
|
1998-02-01 02:37:08 +01:00
|
|
|
dtime etime fdate fgetc fget flush1 fnum fputc fput fstat gerror \
|
|
|
|
getcwd getgid getlog getpid getuid gmtime hostnm idate ierrno irand \
|
|
|
|
isatty itime kill link lnblnk lstat ltime mclock perror rand rename \
|
1998-07-06 11:51:36 +02:00
|
|
|
secnds second sleep srand stat symlnk time ttynam umask unlink \
|
1999-03-06 00:40:12 +01:00
|
|
|
vxttim alarm \
|
|
|
|
date_y2kbuggy date_y2kbug vxtidt_y2kbuggy vxtidt_y2kbug
|
1998-02-01 02:37:08 +01:00
|
|
|
|
1998-10-13 10:51:49 +02:00
|
|
|
.SUFFIXES:
|
|
|
|
|
|
|
|
# The logic here is partly dictated by the desire to keep the lib?77
|
|
|
|
# subdirs for compatibility with the Netlib version and because libU77
|
|
|
|
# has a different copyright; then the libe77 bit (EXTERNALly-callable
|
|
|
|
# versions) is funny. Given that, as well as keeping things as simple
|
|
|
|
# as possible we want (at least) the following:
|
|
|
|
# * Allow make to be run at the top level (all-target-libf2c), at this
|
|
|
|
# level, or the subdirs of this level. In the latter case we only
|
|
|
|
# compile, rather than updating libg2c.a;
|
|
|
|
# * A robust set of dependencies, so that we rebuild (as little as
|
|
|
|
# possible) if a configuration file, g2c.h or any lib?77/*.c file
|
|
|
|
# changes;
|
|
|
|
# * Avoid unnecessary running of ar and ranlib;
|
|
|
|
# * Expose parallelism where reasonable, but not as a priority.
|
|
|
|
|
|
|
|
# The intended top-level target here does a non-multilib build (via
|
|
|
|
# the dependency) and then (perhaps) builds multilibs.
|
|
|
|
|
|
|
|
all: all-unilib
|
|
|
|
$(MULTIDO) $(FLAGS_TO_PASS) multi-do DO="all-unilib"
|
|
|
|
|
|
|
|
# `all-unilib' is the overall target in the absence of multilibs,
|
|
|
|
# meant to be invoked via multi-do for multilibs.
|
|
|
|
|
|
|
|
# Its dependencies can be satisfied in parallel. The [fiu]77 targets
|
Makefile.in (AR, RANLIB): Add, for substitutions.
* Makefile.in (AR, RANLIB): Add, for substitutions.
(all-unilib, $(LIBG2C)): Depend on object lists, not
convenience libraries.
(s-libe77): Renamed from libE77.la; build object list.
(install): Do not move libraries to libdir.
(mostlyclean, clean): Adjust.
* libF77/Makefile.in (RANLIB): Add.
(LINK): Remove.
(../s-libf77): Renamed from ../libF77.la; build object list.
(../libfrtbegin.a): Remove target first. Don't use $<.
(all, clean, distclean): Adjust.
* libF77/configure.in: Substitute RANLIB.
* libF77/configure: Rebuilt.
* libI77/Makefile.in (LINK): Delete.
(../s-libi77): Renamed from ../libI77.la; build object list.
(all, clean, distclean): Adjust.
* libU77/Makefile.in: Likewise.
From-SVN: r47605
2001-12-04 10:53:18 +01:00
|
|
|
# update stamp files (object file lists, actually, see the subdir
|
|
|
|
# makefiles) on which the $(LIBG2C) depends. The stamp files
|
|
|
|
# s-lib[fiu]77 are intentionally not targets, since we're only meant
|
|
|
|
# to come in at the level of this target. The [fiu]77 targets always
|
|
|
|
# invoke sub makes to check dependencies in the subdirs, else we'd
|
1998-10-13 10:51:49 +02:00
|
|
|
# have to maintain them at this level; we live with the overhead of
|
|
|
|
# some recursive makes which may do nothing.
|
|
|
|
|
Makefile.in (AR, RANLIB): Add, for substitutions.
* Makefile.in (AR, RANLIB): Add, for substitutions.
(all-unilib, $(LIBG2C)): Depend on object lists, not
convenience libraries.
(s-libe77): Renamed from libE77.la; build object list.
(install): Do not move libraries to libdir.
(mostlyclean, clean): Adjust.
* libF77/Makefile.in (RANLIB): Add.
(LINK): Remove.
(../s-libf77): Renamed from ../libF77.la; build object list.
(../libfrtbegin.a): Remove target first. Don't use $<.
(all, clean, distclean): Adjust.
* libF77/configure.in: Substitute RANLIB.
* libF77/configure: Rebuilt.
* libI77/Makefile.in (LINK): Delete.
(../s-libi77): Renamed from ../libI77.la; build object list.
(all, clean, distclean): Adjust.
* libU77/Makefile.in: Likewise.
From-SVN: r47605
2001-12-04 10:53:18 +01:00
|
|
|
all-unilib: i77 f77 u77 s-libe77
|
1998-10-13 10:51:49 +02:00
|
|
|
$(MAKE) $(FLAGS_TO_PASS) $(LIBG2C)
|
1998-02-01 02:37:08 +01:00
|
|
|
|
1998-07-12 07:02:03 +02:00
|
|
|
i77 f77 u77: g2c.h
|
|
|
|
|
1998-10-13 10:51:49 +02:00
|
|
|
# This target should normally only get invoked via `all-unilib' --
|
|
|
|
# after all's well in the subdirs -- actually to assemble the library.
|
Makefile.in (AR, RANLIB): Add, for substitutions.
* Makefile.in (AR, RANLIB): Add, for substitutions.
(all-unilib, $(LIBG2C)): Depend on object lists, not
convenience libraries.
(s-libe77): Renamed from libE77.la; build object list.
(install): Do not move libraries to libdir.
(mostlyclean, clean): Adjust.
* libF77/Makefile.in (RANLIB): Add.
(LINK): Remove.
(../s-libf77): Renamed from ../libF77.la; build object list.
(../libfrtbegin.a): Remove target first. Don't use $<.
(all, clean, distclean): Adjust.
* libF77/configure.in: Substitute RANLIB.
* libF77/configure: Rebuilt.
* libI77/Makefile.in (LINK): Delete.
(../s-libi77): Renamed from ../libI77.la; build object list.
(all, clean, distclean): Adjust.
* libU77/Makefile.in: Likewise.
From-SVN: r47605
2001-12-04 10:53:18 +01:00
|
|
|
# The stamp files contain the object lists of each component of the
|
|
|
|
# library. The point of breaking them up is to avoid command-line
|
|
|
|
# length limitations.
|
1998-10-13 10:51:49 +02:00
|
|
|
|
Makefile.in (AR, RANLIB): Add, for substitutions.
* Makefile.in (AR, RANLIB): Add, for substitutions.
(all-unilib, $(LIBG2C)): Depend on object lists, not
convenience libraries.
(s-libe77): Renamed from libE77.la; build object list.
(install): Do not move libraries to libdir.
(mostlyclean, clean): Adjust.
* libF77/Makefile.in (RANLIB): Add.
(LINK): Remove.
(../s-libf77): Renamed from ../libF77.la; build object list.
(../libfrtbegin.a): Remove target first. Don't use $<.
(all, clean, distclean): Adjust.
* libF77/configure.in: Substitute RANLIB.
* libF77/configure: Rebuilt.
* libI77/Makefile.in (LINK): Delete.
(../s-libi77): Renamed from ../libI77.la; build object list.
(all, clean, distclean): Adjust.
* libU77/Makefile.in: Likewise.
From-SVN: r47605
2001-12-04 10:53:18 +01:00
|
|
|
$(LIBG2C): s-libi77 s-libf77 s-libu77 s-libe77
|
2001-10-01 00:06:23 +02:00
|
|
|
$(LIBTOOL) --mode=link $(CC) -o $@ \
|
|
|
|
-version-info $(VERSION_MAJOR):$(VERSION_MINOR):$(VERSION_SUB) \
|
2002-01-20 20:58:42 +01:00
|
|
|
-rpath $(libdir)$(MULTISUBDIR) \
|
Makefile.in (AR, RANLIB): Add, for substitutions.
* Makefile.in (AR, RANLIB): Add, for substitutions.
(all-unilib, $(LIBG2C)): Depend on object lists, not
convenience libraries.
(s-libe77): Renamed from libE77.la; build object list.
(install): Do not move libraries to libdir.
(mostlyclean, clean): Adjust.
* libF77/Makefile.in (RANLIB): Add.
(LINK): Remove.
(../s-libf77): Renamed from ../libF77.la; build object list.
(../libfrtbegin.a): Remove target first. Don't use $<.
(all, clean, distclean): Adjust.
* libF77/configure.in: Substitute RANLIB.
* libF77/configure: Rebuilt.
* libI77/Makefile.in (LINK): Delete.
(../s-libi77): Renamed from ../libI77.la; build object list.
(all, clean, distclean): Adjust.
* libU77/Makefile.in: Likewise.
From-SVN: r47605
2001-12-04 10:53:18 +01:00
|
|
|
-objectlist s-libe77 \
|
|
|
|
-objectlist s-libf77 \
|
|
|
|
-objectlist s-libi77 \
|
|
|
|
-objectlist s-libu77 \
|
2002-01-04 07:22:49 +01:00
|
|
|
-lm
|
1998-02-01 02:37:08 +01:00
|
|
|
|
1998-07-12 07:02:03 +02:00
|
|
|
i77:
|
Makefile.in (install): Don't install if $(libsubdir) is empty...
Sat Jun 13 03:46:40 1998 Craig Burley <burley@gnu.org>
* Makefile.in (install): Don't install if $(libsubdir)
is empty; issue a diagnostic saying top-level Makefile
must pass it in instead, and exit.
* Makefile.in (g2c.h): Rename from f2c.h.
* Makefile.in, libF77/Makefile.in, libI77/Makefile.in,
libU77/Makefile.in: Rewrite config and var assignment
sections to be even more minimal than before, and to
more clearly documented what macros are expected to be
set and to what sorts of values. Eliminate CROSS and
related stuff, since there's no such things as CROSS
in egcs. Rename GCC_FOR_TARGET to CC throughout.
* Makefile.in (stamp-libi77, stamp-libf77, stamp-libu77):
Eliminate CROSS.
* configure.in: Eliminate CROSS.
Rename libf2c.a and f2c.h to libg2c.a and g2c.h,
normalize and simplify g77/libg2c build process:
* Makefile.in: Remove all stuff pertaining to
installation, cleaning, and so on. Parent Makefile
does all that now. Pass F2C_H_DIR,
G2C_H_DIR, and GCC_H_DIR, the pathnames for the
directories containing f2c.h, g2c.h, and other
#include files, to subdirectory Makefiles.
(stamp-libf77, stamp-libi77, stamp-libu77):
Don't specify `-f Makefile' anymore, it's not needed
now that subdirectory makefile's from netlib are
renamed to makefile.netlib in g77 source (and to
makefile.ori by configuration process, in case they're
still around somehow).
(stamp-libe77): Don't make libE77 dir unless it doesn't
exist, if it does just delete all objects in it.
Compile using $(GCC_FOR_TARGET), not $(CC).
(rebuilt): Remove this and all subordinate targets,
as parent Makefile now handles all that.
(*clean): Remove.
* configure.in (Pad_UDread, ALWAYS_FLUSH, WANT_LEAD_0):
Remove these and commentary to new f2c.h file.
AC_OUTPUT g2c.h instead of f2c.h. Remove old commentary
regarding concatenation.
* g2c.h.in: Rename from f2c.h.in, add appropriate
commentary.
* f2c.h: New file, a wrapper for g2c.h that does
libg2c-specific stuff.
* libF77/Makefile.in, libI77/Makefile.in, libU77/Makefile.in:
Change $(ALL_CFLAGS) to use F2C_H_DIR, G2C_H_DIR, and GCC_H_DIR
macros. Remove F2C_H macro, replace use with explicit
dependencies on f2c.h and g2c.h.
(*clean): Remove.
From-SVN: r20507
1998-06-15 09:52:05 +02:00
|
|
|
cd libI77; $(MAKE) $(FLAGS_TO_PASS) all
|
1998-02-01 02:37:08 +01:00
|
|
|
|
1998-07-12 07:02:03 +02:00
|
|
|
f77:
|
Makefile.in (install): Don't install if $(libsubdir) is empty...
Sat Jun 13 03:46:40 1998 Craig Burley <burley@gnu.org>
* Makefile.in (install): Don't install if $(libsubdir)
is empty; issue a diagnostic saying top-level Makefile
must pass it in instead, and exit.
* Makefile.in (g2c.h): Rename from f2c.h.
* Makefile.in, libF77/Makefile.in, libI77/Makefile.in,
libU77/Makefile.in: Rewrite config and var assignment
sections to be even more minimal than before, and to
more clearly documented what macros are expected to be
set and to what sorts of values. Eliminate CROSS and
related stuff, since there's no such things as CROSS
in egcs. Rename GCC_FOR_TARGET to CC throughout.
* Makefile.in (stamp-libi77, stamp-libf77, stamp-libu77):
Eliminate CROSS.
* configure.in: Eliminate CROSS.
Rename libf2c.a and f2c.h to libg2c.a and g2c.h,
normalize and simplify g77/libg2c build process:
* Makefile.in: Remove all stuff pertaining to
installation, cleaning, and so on. Parent Makefile
does all that now. Pass F2C_H_DIR,
G2C_H_DIR, and GCC_H_DIR, the pathnames for the
directories containing f2c.h, g2c.h, and other
#include files, to subdirectory Makefiles.
(stamp-libf77, stamp-libi77, stamp-libu77):
Don't specify `-f Makefile' anymore, it's not needed
now that subdirectory makefile's from netlib are
renamed to makefile.netlib in g77 source (and to
makefile.ori by configuration process, in case they're
still around somehow).
(stamp-libe77): Don't make libE77 dir unless it doesn't
exist, if it does just delete all objects in it.
Compile using $(GCC_FOR_TARGET), not $(CC).
(rebuilt): Remove this and all subordinate targets,
as parent Makefile now handles all that.
(*clean): Remove.
* configure.in (Pad_UDread, ALWAYS_FLUSH, WANT_LEAD_0):
Remove these and commentary to new f2c.h file.
AC_OUTPUT g2c.h instead of f2c.h. Remove old commentary
regarding concatenation.
* g2c.h.in: Rename from f2c.h.in, add appropriate
commentary.
* f2c.h: New file, a wrapper for g2c.h that does
libg2c-specific stuff.
* libF77/Makefile.in, libI77/Makefile.in, libU77/Makefile.in:
Change $(ALL_CFLAGS) to use F2C_H_DIR, G2C_H_DIR, and GCC_H_DIR
macros. Remove F2C_H macro, replace use with explicit
dependencies on f2c.h and g2c.h.
(*clean): Remove.
From-SVN: r20507
1998-06-15 09:52:05 +02:00
|
|
|
cd libF77; $(MAKE) $(FLAGS_TO_PASS) all
|
1998-02-01 02:37:08 +01:00
|
|
|
|
1998-07-12 07:02:03 +02:00
|
|
|
u77:
|
Makefile.in (install): Don't install if $(libsubdir) is empty...
Sat Jun 13 03:46:40 1998 Craig Burley <burley@gnu.org>
* Makefile.in (install): Don't install if $(libsubdir)
is empty; issue a diagnostic saying top-level Makefile
must pass it in instead, and exit.
* Makefile.in (g2c.h): Rename from f2c.h.
* Makefile.in, libF77/Makefile.in, libI77/Makefile.in,
libU77/Makefile.in: Rewrite config and var assignment
sections to be even more minimal than before, and to
more clearly documented what macros are expected to be
set and to what sorts of values. Eliminate CROSS and
related stuff, since there's no such things as CROSS
in egcs. Rename GCC_FOR_TARGET to CC throughout.
* Makefile.in (stamp-libi77, stamp-libf77, stamp-libu77):
Eliminate CROSS.
* configure.in: Eliminate CROSS.
Rename libf2c.a and f2c.h to libg2c.a and g2c.h,
normalize and simplify g77/libg2c build process:
* Makefile.in: Remove all stuff pertaining to
installation, cleaning, and so on. Parent Makefile
does all that now. Pass F2C_H_DIR,
G2C_H_DIR, and GCC_H_DIR, the pathnames for the
directories containing f2c.h, g2c.h, and other
#include files, to subdirectory Makefiles.
(stamp-libf77, stamp-libi77, stamp-libu77):
Don't specify `-f Makefile' anymore, it's not needed
now that subdirectory makefile's from netlib are
renamed to makefile.netlib in g77 source (and to
makefile.ori by configuration process, in case they're
still around somehow).
(stamp-libe77): Don't make libE77 dir unless it doesn't
exist, if it does just delete all objects in it.
Compile using $(GCC_FOR_TARGET), not $(CC).
(rebuilt): Remove this and all subordinate targets,
as parent Makefile now handles all that.
(*clean): Remove.
* configure.in (Pad_UDread, ALWAYS_FLUSH, WANT_LEAD_0):
Remove these and commentary to new f2c.h file.
AC_OUTPUT g2c.h instead of f2c.h. Remove old commentary
regarding concatenation.
* g2c.h.in: Rename from f2c.h.in, add appropriate
commentary.
* f2c.h: New file, a wrapper for g2c.h that does
libg2c-specific stuff.
* libF77/Makefile.in, libI77/Makefile.in, libU77/Makefile.in:
Change $(ALL_CFLAGS) to use F2C_H_DIR, G2C_H_DIR, and GCC_H_DIR
macros. Remove F2C_H macro, replace use with explicit
dependencies on f2c.h and g2c.h.
(*clean): Remove.
From-SVN: r20507
1998-06-15 09:52:05 +02:00
|
|
|
cd libU77; $(MAKE) $(FLAGS_TO_PASS) all
|
1998-02-01 02:37:08 +01:00
|
|
|
|
Makefile.in (AR, RANLIB): Add, for substitutions.
* Makefile.in (AR, RANLIB): Add, for substitutions.
(all-unilib, $(LIBG2C)): Depend on object lists, not
convenience libraries.
(s-libe77): Renamed from libE77.la; build object list.
(install): Do not move libraries to libdir.
(mostlyclean, clean): Adjust.
* libF77/Makefile.in (RANLIB): Add.
(LINK): Remove.
(../s-libf77): Renamed from ../libF77.la; build object list.
(../libfrtbegin.a): Remove target first. Don't use $<.
(all, clean, distclean): Adjust.
* libF77/configure.in: Substitute RANLIB.
* libF77/configure: Rebuilt.
* libI77/Makefile.in (LINK): Delete.
(../s-libi77): Renamed from ../libI77.la; build object list.
(all, clean, distclean): Adjust.
* libU77/Makefile.in: Likewise.
From-SVN: r47605
2001-12-04 10:53:18 +01:00
|
|
|
s-libe77: f2cext.c
|
2001-10-01 00:06:23 +02:00
|
|
|
if [ -d libE77 ]; then rm -f libE77/*.o libE77/*.lo; else mkdir libE77; fi
|
Makefile.in (AR, RANLIB): Add, for substitutions.
* Makefile.in (AR, RANLIB): Add, for substitutions.
(all-unilib, $(LIBG2C)): Depend on object lists, not
convenience libraries.
(s-libe77): Renamed from libE77.la; build object list.
(install): Do not move libraries to libdir.
(mostlyclean, clean): Adjust.
* libF77/Makefile.in (RANLIB): Add.
(LINK): Remove.
(../s-libf77): Renamed from ../libF77.la; build object list.
(../libfrtbegin.a): Remove target first. Don't use $<.
(all, clean, distclean): Adjust.
* libF77/configure.in: Substitute RANLIB.
* libF77/configure: Rebuilt.
* libI77/Makefile.in (LINK): Delete.
(../s-libi77): Renamed from ../libI77.la; build object list.
(all, clean, distclean): Adjust.
* libU77/Makefile.in: Likewise.
From-SVN: r47605
2001-12-04 10:53:18 +01:00
|
|
|
-rm -f $@.T $@
|
1998-02-01 02:37:08 +01:00
|
|
|
for name in $(F2CEXT); \
|
|
|
|
do \
|
|
|
|
echo $${name}; \
|
2001-10-01 00:06:23 +02:00
|
|
|
$(LIBTOOL) --mode=compile $(CC) -c -I. -I$(srcdir) -I../../include \
|
|
|
|
$(CPPFLAGS) $(CFLAGS) -DL$${name} $(srcdir)/f2cext.c \
|
Makefile.in (AR, RANLIB): Add, for substitutions.
* Makefile.in (AR, RANLIB): Add, for substitutions.
(all-unilib, $(LIBG2C)): Depend on object lists, not
convenience libraries.
(s-libe77): Renamed from libE77.la; build object list.
(install): Do not move libraries to libdir.
(mostlyclean, clean): Adjust.
* libF77/Makefile.in (RANLIB): Add.
(LINK): Remove.
(../s-libf77): Renamed from ../libF77.la; build object list.
(../libfrtbegin.a): Remove target first. Don't use $<.
(all, clean, distclean): Adjust.
* libF77/configure.in: Substitute RANLIB.
* libF77/configure: Rebuilt.
* libI77/Makefile.in (LINK): Delete.
(../s-libi77): Renamed from ../libI77.la; build object list.
(all, clean, distclean): Adjust.
* libU77/Makefile.in: Likewise.
From-SVN: r47605
2001-12-04 10:53:18 +01:00
|
|
|
-o libE77/L$${name}.lo ; \
|
1998-02-01 02:37:08 +01:00
|
|
|
if [ $$? -eq 0 ] ; then true; else exit 1; fi; \
|
Makefile.in (AR, RANLIB): Add, for substitutions.
* Makefile.in (AR, RANLIB): Add, for substitutions.
(all-unilib, $(LIBG2C)): Depend on object lists, not
convenience libraries.
(s-libe77): Renamed from libE77.la; build object list.
(install): Do not move libraries to libdir.
(mostlyclean, clean): Adjust.
* libF77/Makefile.in (RANLIB): Add.
(LINK): Remove.
(../s-libf77): Renamed from ../libF77.la; build object list.
(../libfrtbegin.a): Remove target first. Don't use $<.
(all, clean, distclean): Adjust.
* libF77/configure.in: Substitute RANLIB.
* libF77/configure: Rebuilt.
* libI77/Makefile.in (LINK): Delete.
(../s-libi77): Renamed from ../libI77.la; build object list.
(all, clean, distclean): Adjust.
* libU77/Makefile.in: Likewise.
From-SVN: r47605
2001-12-04 10:53:18 +01:00
|
|
|
echo libE77/L$${name}.lo >> $@.T; \
|
1998-02-01 02:37:08 +01:00
|
|
|
done
|
Makefile.in (AR, RANLIB): Add, for substitutions.
* Makefile.in (AR, RANLIB): Add, for substitutions.
(all-unilib, $(LIBG2C)): Depend on object lists, not
convenience libraries.
(s-libe77): Renamed from libE77.la; build object list.
(install): Do not move libraries to libdir.
(mostlyclean, clean): Adjust.
* libF77/Makefile.in (RANLIB): Add.
(LINK): Remove.
(../s-libf77): Renamed from ../libF77.la; build object list.
(../libfrtbegin.a): Remove target first. Don't use $<.
(all, clean, distclean): Adjust.
* libF77/configure.in: Substitute RANLIB.
* libF77/configure: Rebuilt.
* libI77/Makefile.in (LINK): Delete.
(../s-libi77): Renamed from ../libI77.la; build object list.
(all, clean, distclean): Adjust.
* libU77/Makefile.in: Likewise.
From-SVN: r47605
2001-12-04 10:53:18 +01:00
|
|
|
mv $@.T $@
|
1998-02-01 02:37:08 +01:00
|
|
|
|
1998-09-30 13:50:08 +02:00
|
|
|
f2cext.c: g2c.h
|
|
|
|
|
1998-07-25 07:37:48 +02:00
|
|
|
${srcdir}/configure: configure.in
|
1998-07-12 07:02:03 +02:00
|
|
|
rm -f config.cache
|
|
|
|
cd $(srcdir) && autoconf
|
|
|
|
|
|
|
|
# Dependence on Makefile serializes for parallel make.
|
1998-07-25 07:37:48 +02:00
|
|
|
g2c.h: g2c.hin config.status Makefile
|
1998-07-12 07:02:03 +02:00
|
|
|
# Might try to avoid rebuilding everything if Makefile or configure
|
|
|
|
# changes and g2c.h doesn't; see also the Makefile rule. Should
|
|
|
|
# depend on another stamp file rather than using the commented-out
|
|
|
|
# lines below, since g2c.h isn't necessarily brought up to date.
|
|
|
|
# mv g2c.h g2c.x
|
1998-02-18 00:52:39 +01:00
|
|
|
$(SHELL) config.status
|
1999-09-14 09:45:42 +02:00
|
|
|
# $(SHELL) $(srcdir)/../move-if-change g2c.h g2c.x && mv g2c.x g2c.h
|
1998-07-12 07:02:03 +02:00
|
|
|
|
1998-07-25 07:37:48 +02:00
|
|
|
Makefile: Makefile.in config.status
|
1998-10-13 10:51:49 +02:00
|
|
|
# Autoconf doc uses `./config.status'. Is there a good reason to use $(SHELL)?
|
1998-07-12 07:02:03 +02:00
|
|
|
$(SHELL) config.status
|
|
|
|
|
1998-07-25 07:37:48 +02:00
|
|
|
config.status: configure $(gcc_version_trigger)
|
1998-07-12 07:02:03 +02:00
|
|
|
# Make sure we don't pick up a site config file and that configure
|
|
|
|
# gets run with correct values of variables such as CC.
|
|
|
|
CONFIG_SITE=no-such-file $(FLAGS_TO_PASS) \
|
|
|
|
$(SHELL) config.status --recheck
|
1998-02-01 02:37:08 +01:00
|
|
|
|
1998-07-12 07:02:03 +02:00
|
|
|
info install-info clean-info dvi TAGS dist installcheck installdirs:
|
1998-02-18 00:52:39 +01:00
|
|
|
|
|
|
|
check:
|
|
|
|
cd libU77; $(MAKE) G77DIR=../../../gcc/ check
|
1998-02-08 00:30:55 +01:00
|
|
|
|
1998-07-12 07:02:03 +02:00
|
|
|
install: all
|
2002-01-20 20:58:42 +01:00
|
|
|
$(LIBTOOL) --mode=install $(INSTALL) $(LIBG2C) $(libdir)$(MULTISUBDIR)
|
|
|
|
$(INSTALL_DATA) libfrtbegin.a $(libsubdir)$(MULTISUBDIR)
|
|
|
|
$(RANLIB) $(libsubdir)$(MULTISUBDIR)/libfrtbegin.a
|
Makefile.in (install): Don't install if $(libsubdir) is empty...
Sat Jun 13 03:46:40 1998 Craig Burley <burley@gnu.org>
* Makefile.in (install): Don't install if $(libsubdir)
is empty; issue a diagnostic saying top-level Makefile
must pass it in instead, and exit.
* Makefile.in (g2c.h): Rename from f2c.h.
* Makefile.in, libF77/Makefile.in, libI77/Makefile.in,
libU77/Makefile.in: Rewrite config and var assignment
sections to be even more minimal than before, and to
more clearly documented what macros are expected to be
set and to what sorts of values. Eliminate CROSS and
related stuff, since there's no such things as CROSS
in egcs. Rename GCC_FOR_TARGET to CC throughout.
* Makefile.in (stamp-libi77, stamp-libf77, stamp-libu77):
Eliminate CROSS.
* configure.in: Eliminate CROSS.
Rename libf2c.a and f2c.h to libg2c.a and g2c.h,
normalize and simplify g77/libg2c build process:
* Makefile.in: Remove all stuff pertaining to
installation, cleaning, and so on. Parent Makefile
does all that now. Pass F2C_H_DIR,
G2C_H_DIR, and GCC_H_DIR, the pathnames for the
directories containing f2c.h, g2c.h, and other
#include files, to subdirectory Makefiles.
(stamp-libf77, stamp-libi77, stamp-libu77):
Don't specify `-f Makefile' anymore, it's not needed
now that subdirectory makefile's from netlib are
renamed to makefile.netlib in g77 source (and to
makefile.ori by configuration process, in case they're
still around somehow).
(stamp-libe77): Don't make libE77 dir unless it doesn't
exist, if it does just delete all objects in it.
Compile using $(GCC_FOR_TARGET), not $(CC).
(rebuilt): Remove this and all subordinate targets,
as parent Makefile now handles all that.
(*clean): Remove.
* configure.in (Pad_UDread, ALWAYS_FLUSH, WANT_LEAD_0):
Remove these and commentary to new f2c.h file.
AC_OUTPUT g2c.h instead of f2c.h. Remove old commentary
regarding concatenation.
* g2c.h.in: Rename from f2c.h.in, add appropriate
commentary.
* f2c.h: New file, a wrapper for g2c.h that does
libg2c-specific stuff.
* libF77/Makefile.in, libI77/Makefile.in, libU77/Makefile.in:
Change $(ALL_CFLAGS) to use F2C_H_DIR, G2C_H_DIR, and GCC_H_DIR
macros. Remove F2C_H macro, replace use with explicit
dependencies on f2c.h and g2c.h.
(*clean): Remove.
From-SVN: r20507
1998-06-15 09:52:05 +02:00
|
|
|
$(INSTALL_DATA) g2c.h $(libsubdir)/include/g2c.h
|
|
|
|
@if [ -f f2c-install-ok -o -f $(srcdir)/f2c-install-ok ]; then \
|
|
|
|
echo ''; \
|
|
|
|
echo 'Warning: g77 no longer installs libf2c.a or f2c.h.'; \
|
|
|
|
echo ' You must do so yourself. For more information,'; \
|
|
|
|
echo ' read "Distributing Binaries" in the g77 docs.'; \
|
|
|
|
echo ' (To turn off this warning, delete the file'; \
|
|
|
|
echo ' f2c-install-ok in the source or build directory.)'; \
|
|
|
|
echo ''; \
|
1998-09-13 06:19:15 +02:00
|
|
|
else true; fi
|
1998-09-21 12:34:28 +02:00
|
|
|
$(MULTIDO) $(FLAGS_TO_PASS) multi-do DO="$@"
|
2001-10-01 00:06:23 +02:00
|
|
|
@-$(LIBTOOL) --mode=finish $(prefix)/lib
|
1998-02-01 02:37:08 +01:00
|
|
|
|
1998-07-12 07:02:03 +02:00
|
|
|
install-strip:
|
|
|
|
$(MAKE) INSTALL_PROGRAM='$(INSTALL_PROGRAM) -s' install
|
|
|
|
|
|
|
|
uninstall:
|
2002-01-20 20:58:42 +01:00
|
|
|
rm -f $(libsubdir)$(MULTISUBDIR)/include/g2c.h
|
|
|
|
$(LIBTOOL) --mode=uninstall rm -f $(libdir)$(MULTISUBDIR)/$(LIBG2C_BASE).la
|
1998-09-21 12:34:28 +02:00
|
|
|
$(MULTIDO) $(FLAGS_TO_PASS) multi-do DO="$@"
|
1998-07-12 07:02:03 +02:00
|
|
|
|
1998-02-01 02:37:08 +01:00
|
|
|
mostlyclean:
|
2001-10-01 00:06:23 +02:00
|
|
|
rm -f $(LIBG2C) objlist
|
1998-09-21 12:34:28 +02:00
|
|
|
$(MAKE) DO=$@ DODIRS="$(SUBDIRS)" $(FLAGS_TO_PASS) subdir_do; \
|
|
|
|
$(MULTICLEAN) multi-clean DO=$@
|
Makefile.in (AR, RANLIB): Add, for substitutions.
* Makefile.in (AR, RANLIB): Add, for substitutions.
(all-unilib, $(LIBG2C)): Depend on object lists, not
convenience libraries.
(s-libe77): Renamed from libE77.la; build object list.
(install): Do not move libraries to libdir.
(mostlyclean, clean): Adjust.
* libF77/Makefile.in (RANLIB): Add.
(LINK): Remove.
(../s-libf77): Renamed from ../libF77.la; build object list.
(../libfrtbegin.a): Remove target first. Don't use $<.
(all, clean, distclean): Adjust.
* libF77/configure.in: Substitute RANLIB.
* libF77/configure: Rebuilt.
* libI77/Makefile.in (LINK): Delete.
(../s-libi77): Renamed from ../libI77.la; build object list.
(all, clean, distclean): Adjust.
* libU77/Makefile.in: Likewise.
From-SVN: r47605
2001-12-04 10:53:18 +01:00
|
|
|
rm -fr libE77 s-libe77
|
1998-02-01 02:37:08 +01:00
|
|
|
|
1998-07-12 07:02:03 +02:00
|
|
|
clean: mostlyclean
|
|
|
|
rm -f config.log
|
1998-09-21 12:34:28 +02:00
|
|
|
$(MAKE) DO=$@ DODIRS="$(SUBDIRS)" $(FLAGS_TO_PASS) subdir_do; \
|
|
|
|
$(MULTICLEAN) multi-clean DO=$@
|
2001-10-01 00:06:23 +02:00
|
|
|
rm -rf .libs
|
Makefile.in (install): Don't install if $(libsubdir) is empty...
Sat Jun 13 03:46:40 1998 Craig Burley <burley@gnu.org>
* Makefile.in (install): Don't install if $(libsubdir)
is empty; issue a diagnostic saying top-level Makefile
must pass it in instead, and exit.
* Makefile.in (g2c.h): Rename from f2c.h.
* Makefile.in, libF77/Makefile.in, libI77/Makefile.in,
libU77/Makefile.in: Rewrite config and var assignment
sections to be even more minimal than before, and to
more clearly documented what macros are expected to be
set and to what sorts of values. Eliminate CROSS and
related stuff, since there's no such things as CROSS
in egcs. Rename GCC_FOR_TARGET to CC throughout.
* Makefile.in (stamp-libi77, stamp-libf77, stamp-libu77):
Eliminate CROSS.
* configure.in: Eliminate CROSS.
Rename libf2c.a and f2c.h to libg2c.a and g2c.h,
normalize and simplify g77/libg2c build process:
* Makefile.in: Remove all stuff pertaining to
installation, cleaning, and so on. Parent Makefile
does all that now. Pass F2C_H_DIR,
G2C_H_DIR, and GCC_H_DIR, the pathnames for the
directories containing f2c.h, g2c.h, and other
#include files, to subdirectory Makefiles.
(stamp-libf77, stamp-libi77, stamp-libu77):
Don't specify `-f Makefile' anymore, it's not needed
now that subdirectory makefile's from netlib are
renamed to makefile.netlib in g77 source (and to
makefile.ori by configuration process, in case they're
still around somehow).
(stamp-libe77): Don't make libE77 dir unless it doesn't
exist, if it does just delete all objects in it.
Compile using $(GCC_FOR_TARGET), not $(CC).
(rebuilt): Remove this and all subordinate targets,
as parent Makefile now handles all that.
(*clean): Remove.
* configure.in (Pad_UDread, ALWAYS_FLUSH, WANT_LEAD_0):
Remove these and commentary to new f2c.h file.
AC_OUTPUT g2c.h instead of f2c.h. Remove old commentary
regarding concatenation.
* g2c.h.in: Rename from f2c.h.in, add appropriate
commentary.
* f2c.h: New file, a wrapper for g2c.h that does
libg2c-specific stuff.
* libF77/Makefile.in, libI77/Makefile.in, libU77/Makefile.in:
Change $(ALL_CFLAGS) to use F2C_H_DIR, G2C_H_DIR, and GCC_H_DIR
macros. Remove F2C_H macro, replace use with explicit
dependencies on f2c.h and g2c.h.
(*clean): Remove.
From-SVN: r20507
1998-06-15 09:52:05 +02:00
|
|
|
|
1998-07-12 07:02:03 +02:00
|
|
|
distclean: clean
|
Makefile.in (AR, RANLIB): Add, for substitutions.
* Makefile.in (AR, RANLIB): Add, for substitutions.
(all-unilib, $(LIBG2C)): Depend on object lists, not
convenience libraries.
(s-libe77): Renamed from libE77.la; build object list.
(install): Do not move libraries to libdir.
(mostlyclean, clean): Adjust.
* libF77/Makefile.in (RANLIB): Add.
(LINK): Remove.
(../s-libf77): Renamed from ../libF77.la; build object list.
(../libfrtbegin.a): Remove target first. Don't use $<.
(all, clean, distclean): Adjust.
* libF77/configure.in: Substitute RANLIB.
* libF77/configure: Rebuilt.
* libI77/Makefile.in (LINK): Delete.
(../s-libi77): Renamed from ../libI77.la; build object list.
(all, clean, distclean): Adjust.
* libU77/Makefile.in: Likewise.
From-SVN: r47605
2001-12-04 10:53:18 +01:00
|
|
|
rm -f g2c.h s-libe77
|
1998-09-21 12:34:28 +02:00
|
|
|
$(MAKE) DO=$@ DODIRS="$(SUBDIRS)" $(FLAGS_TO_PASS) subdir_do; \
|
1998-09-30 10:05:57 +02:00
|
|
|
$(MULTICLEAN) multi-clean DO=distclean
|
1999-02-09 20:55:01 +01:00
|
|
|
rm -f config.cache config.status Makefile
|
Makefile.in (install): Don't install if $(libsubdir) is empty...
Sat Jun 13 03:46:40 1998 Craig Burley <burley@gnu.org>
* Makefile.in (install): Don't install if $(libsubdir)
is empty; issue a diagnostic saying top-level Makefile
must pass it in instead, and exit.
* Makefile.in (g2c.h): Rename from f2c.h.
* Makefile.in, libF77/Makefile.in, libI77/Makefile.in,
libU77/Makefile.in: Rewrite config and var assignment
sections to be even more minimal than before, and to
more clearly documented what macros are expected to be
set and to what sorts of values. Eliminate CROSS and
related stuff, since there's no such things as CROSS
in egcs. Rename GCC_FOR_TARGET to CC throughout.
* Makefile.in (stamp-libi77, stamp-libf77, stamp-libu77):
Eliminate CROSS.
* configure.in: Eliminate CROSS.
Rename libf2c.a and f2c.h to libg2c.a and g2c.h,
normalize and simplify g77/libg2c build process:
* Makefile.in: Remove all stuff pertaining to
installation, cleaning, and so on. Parent Makefile
does all that now. Pass F2C_H_DIR,
G2C_H_DIR, and GCC_H_DIR, the pathnames for the
directories containing f2c.h, g2c.h, and other
#include files, to subdirectory Makefiles.
(stamp-libf77, stamp-libi77, stamp-libu77):
Don't specify `-f Makefile' anymore, it's not needed
now that subdirectory makefile's from netlib are
renamed to makefile.netlib in g77 source (and to
makefile.ori by configuration process, in case they're
still around somehow).
(stamp-libe77): Don't make libE77 dir unless it doesn't
exist, if it does just delete all objects in it.
Compile using $(GCC_FOR_TARGET), not $(CC).
(rebuilt): Remove this and all subordinate targets,
as parent Makefile now handles all that.
(*clean): Remove.
* configure.in (Pad_UDread, ALWAYS_FLUSH, WANT_LEAD_0):
Remove these and commentary to new f2c.h file.
AC_OUTPUT g2c.h instead of f2c.h. Remove old commentary
regarding concatenation.
* g2c.h.in: Rename from f2c.h.in, add appropriate
commentary.
* f2c.h: New file, a wrapper for g2c.h that does
libg2c-specific stuff.
* libF77/Makefile.in, libI77/Makefile.in, libU77/Makefile.in:
Change $(ALL_CFLAGS) to use F2C_H_DIR, G2C_H_DIR, and GCC_H_DIR
macros. Remove F2C_H macro, replace use with explicit
dependencies on f2c.h and g2c.h.
(*clean): Remove.
From-SVN: r20507
1998-06-15 09:52:05 +02:00
|
|
|
|
|
|
|
maintainer-clean:
|
1998-02-01 02:37:08 +01:00
|
|
|
|
1998-07-25 07:37:48 +02:00
|
|
|
rebuilt: configure
|
1998-02-01 02:37:08 +01:00
|
|
|
|
1998-07-12 07:02:03 +02:00
|
|
|
.PHONY: rebuilt mostlyclean clean distclean maintainer-clean all \
|
1998-07-19 06:54:06 +02:00
|
|
|
i77 f77 u77 check uninstall install-strip dist \
|
1998-10-13 10:51:49 +02:00
|
|
|
installcheck installdirs all-unilib
|
1998-09-21 12:34:28 +02:00
|
|
|
|
|
|
|
subdir_do:
|
|
|
|
@rootpre=`pwd`/; export rootpre; \
|
|
|
|
srcrootpre=`cd $(srcdir); pwd`/; export srcrootpre; \
|
|
|
|
for i in .. $(DODIRS); do \
|
|
|
|
if [ x$$i != x.. ]; then \
|
|
|
|
if [ -f ./$$i/Makefile ]; then \
|
|
|
|
if (cd ./$$i; $(MAKE) $(FLAGS_TO_PASS) $(DO)); then \
|
|
|
|
true; \
|
|
|
|
else \
|
|
|
|
exit 1; \
|
|
|
|
fi; \
|
|
|
|
else true; fi; \
|
|
|
|
else true; fi; \
|
|
|
|
done
|
|
|
|
|
1998-10-13 10:51:49 +02:00
|
|
|
# multidoings may be added here by configure.
|