continue code separation into different folders

This commit is contained in:
2012-03-18 21:32:46 +04:00
parent a528959369
commit a2877a1364
5 changed files with 16 additions and 12 deletions

View File

@ -1,6 +1,6 @@
AC_PREREQ([2.68])
AC_INIT(yasnd, 0.1, admin@pinkbyte.ru)
AC_CONFIG_SRCDIR([yasnd.c])
AC_CONFIG_SRCDIR([daemon/yasnd.c])
AC_CONFIG_HEADERS([config.h])
AC_LANG([C])
AM_INIT_AUTOMAKE
@ -11,6 +11,7 @@ AC_PREFIX_DEFAULT()
# Checks for programs.
AC_PROG_CC_C99
AM_PROG_CC_C_O
LT_INIT
# Checks for libraries.
@ -29,5 +30,5 @@ AC_CHECK_FUNCS([strdup memset])
AC_FUNC_FORK
AC_FUNC_MALLOC
AC_CONFIG_FILES([Makefile lib/Makefile])
AC_CONFIG_FILES([Makefile lib/Makefile daemon/Makefile])
AC_OUTPUT