Hello
This commit is contained in:
parent
2a1d3e6974
commit
89419d1b69
|
@ -0,0 +1,35 @@
|
||||||
|
dnl Process this file with autoconf to produce a configure script.
|
||||||
|
AC_INIT(src/boom_main.c)
|
||||||
|
|
||||||
|
BOOM_MAJOR_VERSION=1
|
||||||
|
BOOM_MINOR_VERSION=2
|
||||||
|
BOOM_VERSION=$BOOM_MAJOR_VERSION.$BOOM_MINOR_VERSION
|
||||||
|
|
||||||
|
AC_SUBST(BOOM_MAJOR_VERSION)
|
||||||
|
AC_SUBST(BOOM_MINOR_VERSION)
|
||||||
|
AC_SUBST(BOOM_VERSION)
|
||||||
|
|
||||||
|
# For automake.
|
||||||
|
VERSION=$BOOM_VERSION
|
||||||
|
PACKAGE=boom
|
||||||
|
|
||||||
|
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
|
||||||
|
])
|
|
@ -0,0 +1,35 @@
|
||||||
|
dnl Process this file with autoconf to produce a configure script.
|
||||||
|
AC_INIT(src/fsp_main.c)
|
||||||
|
|
||||||
|
FSP_MAJOR_VERSION=1
|
||||||
|
FSP_MINOR_VERSION=1
|
||||||
|
FSP_VERSION=$FSP_MAJOR_VERSION.$FSP_MINOR_VERSION
|
||||||
|
|
||||||
|
AC_SUBST(FSP_MAJOR_VERSION)
|
||||||
|
AC_SUBST(FSP_MINOR_VERSION)
|
||||||
|
AC_SUBST(FSP_VERSION)
|
||||||
|
|
||||||
|
# For automake.
|
||||||
|
VERSION=$FSP_VERSION
|
||||||
|
PACKAGE=fsp
|
||||||
|
|
||||||
|
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
|
||||||
|
])
|
Loading…
Reference in New Issue