begin to separate potentially shared code into library

This commit is contained in:
2012-02-23 13:36:48 +04:00
parent 131ea70b6a
commit 8159ff04d2
6 changed files with 24 additions and 2 deletions

View File

@ -4,12 +4,15 @@ AC_CONFIG_SRCDIR([yasnd.c])
AC_CONFIG_HEADERS([config.h])
AC_LANG([C])
AM_INIT_AUTOMAKE
AC_CONFIG_MACRO_DIR([m4])
AC_DISABLE_STATIC
# Default prefix for installation
AC_PREFIX_DEFAULT()
# Checks for programs.
AC_PROG_CC_C99
LT_INIT
# Checks for libraries.
PKG_CHECK_MODULES([gammu], [gammu >= 1.0])
@ -27,5 +30,5 @@ AC_CHECK_FUNCS([strdup memset])
AC_FUNC_FORK
AC_FUNC_MALLOC
AC_CONFIG_FILES([Makefile])
AC_CONFIG_FILES([Makefile lib/Makefile])
AC_OUTPUT