petit outil qui fait grossir les partilles de via
This commit is contained in:
parent
ae0ab264d6
commit
b26da82338
|
@ -0,0 +1,3 @@
|
|||
## Process this file with automake to produce Makefile.in
|
||||
|
||||
SUBDIRS = src
|
|
@ -0,0 +1,33 @@
|
|||
dnl Process this file with autoconf to produce a configure script.
|
||||
AC_INIT(src/growstk.c)
|
||||
|
||||
GROWSTK_MAJOR_VERSION=1
|
||||
GROWSTK_MINOR_VERSION=0
|
||||
GROWSTK_VERSION=$GROWSTK_MAJOR_VERSION.$GROWSTK_MINOR_VERSION
|
||||
|
||||
AC_SUBST(GROWSTK_MAJOR_VERSION)
|
||||
AC_SUBST(GROWSTK_MINOR_VERSION)
|
||||
AC_SUBST(GROWSTK_VERSION)
|
||||
|
||||
# For automake.
|
||||
VERSION=$GROWSTK_VERSION
|
||||
PACKAGE=growstk
|
||||
|
||||
dnl Initialize automake stuff
|
||||
AM_INIT_AUTOMAKE($PACKAGE, $VERSION)
|
||||
|
||||
dnl Checks for programs.
|
||||
AC_PROG_CC
|
||||
AC_PROG_RANLIB
|
||||
AC_PROG_MAKE_SET
|
||||
|
||||
dnl Checks for typedefs, structures, and compiler characteristics.
|
||||
AC_C_CONST
|
||||
AC_CHECK_LIB(m, sqrt)
|
||||
|
||||
AM_ALLIANCE
|
||||
|
||||
AC_OUTPUT([
|
||||
Makefile
|
||||
src/Makefile
|
||||
])
|
Loading…
Reference in New Issue