mirror of
https://github.com/octoleo/lsyncd.git
synced 2024-11-14 09:04:05 +00:00
15 lines
349 B
Makefile
15 lines
349 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/version.sh \
|
|
tests/wrong-logfile.sh \
|
|
tests/wrong-rsync.sh
|
|
|
|
datarootdir = @datarootdir@
|
|
|
|
EXTRA_DIST = config.h.in inotify-nosys.h
|
|
|
|
check-syntax:
|
|
$(CC) -c -O2 -Wall $(CHK_SOURCES) -o/dev/null
|