home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 22 gnu / 22-gnu.zip / gnurx.zip / rx / configure.in < prev    next >
Text File  |  1995-12-31  |  362b  |  22 lines

  1. dnl Process this file with autoconf to produce a configure script.
  2. AC_INIT(rx.c)
  3.  
  4. AC_PROG_CC
  5. AC_PROG_CPP
  6. AC_PROG_RANLIB
  7. AC_PROG_INSTALL
  8.  
  9. AC_STDC_HEADERS
  10.  
  11. opt_objs=
  12. opt_cflags=
  13. if test -d ../libguile ; then
  14.   opt_objs=guilergx.o
  15.   opt_cflags="-I$srcdir/../libguile -I../libguile -DRX_WANT_RX_DEFS"
  16. fi
  17.  
  18. AC_SUBST(opt_objs)
  19. AC_SUBST(opt_cflags)
  20.  
  21. AC_OUTPUT(Makefile)
  22.