This commit is contained in:
Ludovic Jacomme 2002-03-26 13:12:29 +00:00
parent 5671e04ad9
commit 2a1d3e6974
1 changed files with 35 additions and 0 deletions

View File

@ -0,0 +1,35 @@
dnl Process this file with autoconf to produce a configure script.
AC_INIT(src/syf_main.c)
SYF_MAJOR_VERSION=3
SYF_MINOR_VERSION=6
SYF_VERSION=$SYF_MAJOR_VERSION.$SYF_MINOR_VERSION
AC_SUBST(SYF_MAJOR_VERSION)
AC_SUBST(SYF_MINOR_VERSION)
AC_SUBST(SYF_VERSION)
# For automake.
VERSION=$SYF_VERSION
PACKAGE=syf
dnl Initialize automake stuff
AM_INIT_AUTOMAKE($PACKAGE, $VERSION)
dnl Checks for programs.
AC_PROG_CC
AM_PROG_LEX
AC_PROG_YACC
AC_PROG_RANLIB
AC_PROG_MAKE_SET
dnl Checks for typedefs, structures, and compiler characteristics.
AC_C_CONST
AM_ALLIANCE
AC_OUTPUT([
Makefile
man1/Makefile
src/Makefile
])