mirror of
https://github.com/octoleo/lsyncd.git
synced 2024-11-15 17:37:07 +00:00
7a517789db
we don't use libtool to generate shared libraries, and that should mean we don't need it.
15 lines
263 B
Plaintext
15 lines
263 B
Plaintext
AC_INIT(lsyncd.c)
|
|
m4_define(LSYNCD_PACKAGE,lsyncd)
|
|
m4_define(LSYNCD_VERSION,1.0)
|
|
AM_INIT_AUTOMAKE(LSYNCD_PACKAGE,LSYNCD_VERSION)
|
|
|
|
AM_MAINTAINER_MODE
|
|
|
|
AC_PROG_CC
|
|
AC_PROG_INSTALL
|
|
AC_CHECK_HEADERS([sys/inotify.h])
|
|
|
|
AC_CONFIG_HEADERS([config.h])
|
|
|
|
AC_OUTPUT(Makefile)
|