scyther/configure.in
ccremers 512c11435e - Repaired the aux config dir & install-sh issue. This makes the main
directory more crowded, but it couldn't get it to work otherwise.
2004-05-21 18:21:50 +00:00

33 lines
744 B
Plaintext

AC_INIT(src/main.c)
AM_INIT_AUTOMAKE(Scyther, 0.2, ccremers@win.tue.nl)
AM_CONFIG_HEADER(config.h)
AC_CONFIG_SRCDIR(src)
AC_PROG_LIBTOOL
dnl find and test the C compiler
AC_PROG_CC
AC_LANG_C
AC_PROG_MAKE_SET
# Checks for header files.
AC_HEADER_STDC
AC_CHECK_HEADERS([limits.h malloc.h stddef.h stdlib.h strings.h unistd.h])
# Checks for library functions.
AC_FUNC_MALLOC
AC_FUNC_REALLOC
AC_CHECK_LIB(argtable2, arg_parse,,AC_MSG_ERROR(Scyther requires the argtable2 package (LGPL).
Get it from http://argtable.sourceforge.net/))
AC_PROG_YACC
AC_PROG_LEX
#AC_DECL_YYTEXT
VERSION="0.0.1"
AC_SUBST(ac_aux_dir)
SUBDIRS = src
dnl read Makefile.in and write Makefile
AC_OUTPUT(Makefile src/Makefile)