mirror of
git://git.savannah.gnu.org/libtool.git
synced 2024-11-21 01:40:57 +08:00
c466be90b3
Fortran support tag. (AC_LIBTOOL_PROG_CC_C_O, _LT_AC_TAGCONFIG): Support F77 tag. (AC_LIBTOOL_F77, _LT_AC_LANG_F77, AC_LIBTOOL_LANG_F77_CONFIG): New macros for F77 tag Fortran support. * configure.ac: Add support for creating the new F77 tag. * bootstrap: Add f77demo directory to the list to be processed. * Makefile.am: Add support for FFLAGS and FLIBS. * tests/Makefile.am: Add new Fortran tests. * tests/f77demo-*.test: New files. * f77demo/configure.ac, f77demo/cprogram.c, f77demo/fooc.c * f77demo/foof.f, f77demo/foo.h, f77demo/fprogram.f * f77demo/Makefile.am, f77demo/README: New files.
26 lines
549 B
Bash
Executable File
26 lines
549 B
Bash
Executable File
#! /bin/sh
|
|
# f77demo-make.test - try building in the ../f77demo subdirectory
|
|
|
|
# Test script header.
|
|
need_prefix=no
|
|
if test -z "$srcdir"; then
|
|
srcdir=`echo "$0" | sed 's%/[^/]*$%%'`
|
|
test "$srcdir" = "$0" && srcdir=.
|
|
test "${VERBOSE+set}" != "set" && VERBOSE=yes
|
|
fi
|
|
. $srcdir/defs || exit 1
|
|
|
|
if test -f ../f77demo/Makefile; then :
|
|
else
|
|
echo "You must run f77demo-conf.test before running $0" 1>&2
|
|
exit 77
|
|
fi
|
|
|
|
# Change to our build directory.
|
|
cd ../f77demo || exit 1
|
|
|
|
# Do the actual build.
|
|
echo "Making in ../f77demo"
|
|
$make || exit 1
|
|
exit 0
|