home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 7 / FreshFishVol7.bin / bbs / gnu / binutils-1.8.x-src.lha / GNU / src / amiga / binutils-1.8.x / configure.in < prev    next >
Text File  |  1994-04-30  |  496b  |  21 lines

  1. dnl Process this file with autoconf to produce a configure script.
  2. AC_INIT(ld.c)
  3.  
  4. # We want these before the checks, so the checks can modify their values.
  5. test -z "$CFLAGS" && CFLAGS= auto_cflags=1
  6. test -z "$LDFLAGS" && LDFLAGS=
  7.  
  8. AC_PROG_CC
  9.  
  10. # If we're using gcc and the user hasn't specified CFLAGS, add -O to CFLAGS.
  11. test -n "$GCC" && test -n "$auto_cflags" && CFLAGS="$CFLAGS -O2"
  12.  
  13. AC_SUBST(CFLAGS)dnl
  14. AC_SUBST(LDFLAGS)dnl
  15.  
  16. AC_PROG_CPP
  17. AC_GCC_TRADITIONAL
  18. AC_PROG_INSTALL
  19.  
  20. AC_OUTPUT(Makefile)
  21.