mirror of
https://github.com/octoleo/lsyncd.git
synced 2024-11-11 07:40:55 +00:00
37 lines
895 B
Makefile
37 lines
895 B
Makefile
## Makefile.am -- Process this file with automake to produce Makefile.in
|
|
bin_PROGRAMS = lsyncd
|
|
lsyncd_SOURCES = lsyncd.c
|
|
TESTS = tests/help.sh \
|
|
tests/directorymv.sh \
|
|
tests/directorycpr.sh \
|
|
tests/pidfile.sh \
|
|
tests/version.sh \
|
|
tests/wrong-logfile.sh \
|
|
tests/wrong-rsync.sh
|
|
|
|
datarootdir = @datarootdir@
|
|
|
|
EXTRA_DIST = config.h.in inotify-nosys.h manpage.xml lsyncd.conf.xml
|
|
|
|
nodist_man1_MANS = lsyncd.1
|
|
|
|
check-syntax:
|
|
$(CC) -c -O2 -Wall $(CHK_SOURCES) -o/dev/null
|
|
|
|
lsyncd.1: manpage.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 \
|
|
manpage.xml
|
|
|
|
AM_CFLAGS=-Wall
|
|
AM_LIBS=
|
|
if XML_CONFIG
|
|
DEFS+=-DXML_CONFIG
|
|
AM_CFLAGS += `xml2-config --cflags`
|
|
AM_CFLAGS += `xml2-config --libs`
|
|
endif
|
|
|