diff --git a/alliance/src/b2f/configure.in b/alliance/src/b2f/configure.in new file mode 100644 index 00000000..61cfdf17 --- /dev/null +++ b/alliance/src/b2f/configure.in @@ -0,0 +1,34 @@ +dnl Process this file with autoconf to produce a configure script. +AC_INIT(src/b2f_main.c) + +B2F_MAJOR_VERSION=1 +B2F_MINOR_VERSION=2 +B2F_VERSION=$B2F_MAJOR_VERSION.$B2F_MINOR_VERSION + +AC_SUBST(B2F_MAJOR_VERSION) +AC_SUBST(B2F_MINOR_VERSION) +AC_SUBST(B2F_VERSION) + +# For automake. +VERSION=$B2F_VERSION +PACKAGE=b2f + +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 +src/Makefile +]) diff --git a/alliance/src/k2f/configure.in b/alliance/src/k2f/configure.in new file mode 100644 index 00000000..f0279a59 --- /dev/null +++ b/alliance/src/k2f/configure.in @@ -0,0 +1,35 @@ +dnl Process this file with autoconf to produce a configure script. +AC_INIT(src/k2f_main.c) + +K2F_MAJOR_VERSION=1 +K2F_MINOR_VERSION=1 +K2F_VERSION=$K2F_MAJOR_VERSION.$K2F_MINOR_VERSION + +AC_SUBST(K2F_MAJOR_VERSION) +AC_SUBST(K2F_MINOR_VERSION) +AC_SUBST(K2F_VERSION) + +# For automake. +VERSION=$K2F_VERSION +PACKAGE=k2f + +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 +])