2008-08-06 13:04:01 +00:00
|
|
|
## Makefile.am -- Process this file with automake to produce Makefile.in
|
|
|
|
bin_PROGRAMS = lsyncd
|
|
|
|
lsyncd_SOURCES = lsyncd.c
|
2008-10-06 20:35:52 +00:00
|
|
|
TESTS = tests/help.sh \
|
2008-10-08 04:09:02 +00:00
|
|
|
tests/directorymv.sh \
|
2008-11-05 11:37:35 +00:00
|
|
|
tests/directorycpr.sh \
|
2008-10-08 04:08:52 +00:00
|
|
|
tests/pidfile.sh \
|
2008-10-06 20:35:52 +00:00
|
|
|
tests/version.sh \
|
|
|
|
tests/wrong-logfile.sh \
|
|
|
|
tests/wrong-rsync.sh
|
2008-08-06 13:04:01 +00:00
|
|
|
|
|
|
|
datarootdir = @datarootdir@
|
|
|
|
|
2008-11-21 10:04:18 +00:00
|
|
|
EXTRA_DIST = config.h.in inotify-nosys.h manpage.xml lsyncd.conf.xml
|
2008-10-08 04:08:52 +00:00
|
|
|
|
2008-12-04 21:54:56 +00:00
|
|
|
nodist_man1_MANS = lsyncd.1 lsyncd.conf.xml.5
|
2008-10-08 04:08:42 +00:00
|
|
|
|
|
|
|
check-syntax:
|
|
|
|
$(CC) -c -O2 -Wall $(CHK_SOURCES) -o/dev/null
|
2008-10-08 04:08:52 +00:00
|
|
|
|
2008-12-04 21:54:56 +00:00
|
|
|
lsyncd.1: manpage.lsyncd.xml
|
2008-10-08 04:08:52 +00:00
|
|
|
xsltproc -''-nonet \
|
|
|
|
-''-param man.charmap.use.subset "0" \
|
|
|
|
-''-param make.year.ranges "1" \
|
|
|
|
-''-param make.single.year.ranges "1" \
|
|
|
|
/usr/share/xml/docbook/stylesheet/nwalsh/manpages/docbook.xsl \
|
2008-12-04 21:54:56 +00:00
|
|
|
$<
|
|
|
|
|
|
|
|
lsyncd.conf.xml.5: manpage.lsyncd.conf.xml
|
|
|
|
xsltproc -''-nonet \
|
|
|
|
-''-param man.charmap.use.subset "0" \
|
|
|
|
-''-param make.year.ranges "1" \
|
|
|
|
-''-param make.single.year.ranges "1" \
|
|
|
|
/usr/share/xml/docbook/stylesheet/nwalsh/manpages/docbook.xsl \
|
|
|
|
$<
|
2008-11-20 21:38:58 +00:00
|
|
|
|
|
|
|
AM_CFLAGS=-Wall
|
|
|
|
AM_LIBS=
|
|
|
|
if XML_CONFIG
|
|
|
|
DEFS+=-DXML_CONFIG
|
|
|
|
AM_CFLAGS += `xml2-config --cflags`
|
|
|
|
AM_CFLAGS += `xml2-config --libs`
|
|
|
|
endif
|
|
|
|
|