home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Gold Fish 2
/
goldfish_vol2_cd2.bin
/
bbs
/
gnu
/
f2c-1993.04.28-src.lha
/
GNU
/
src
/
amiga
/
f2c-1993.04.28
/
configure.in
< prev
next >
Wrap
Text File
|
1994-05-02
|
570b
|
23 lines
dnl Process this file with autoconf to produce a configure script.
AC_INIT(f2c.h)
# We want these before the checks, so the checks can modify their values.
test -z "$CFLAGS" && CFLAGS= auto_cflags=1
test -z "$LDFLAGS" && LDFLAGS=
AC_PROG_CC
# If we're using gcc and the user hasn't specified CFLAGS, add -O to CFLAGS.
test -n "$GCC" && test -n "$auto_cflags" && CFLAGS="$CFLAGS -O2"
AC_SUBST(CFLAGS)dnl
AC_SUBST(LDFLAGS)dnl
AC_PROG_CPP
AC_GCC_TRADITIONAL
AC_PROG_INSTALL
AC_PROG_RANLIB
AC_PROG_YACC
AC_OUTPUT(Makefile src/Makefile libF77/Makefile libI77/Makefile)