2019-11-04 20:09:15 +01:00
|
|
|
EXTRA_DIST = test.rc start.sh stop.sh
|
2019-11-15 11:07:28 +01:00
|
|
|
EXTRA_DIST += api.sh local.sh remote.sh fwd.sh
|
2019-10-29 11:08:23 +01:00
|
|
|
CLEANFILES = *~ *.trs *.log
|
|
|
|
TEST_EXTENSIONS = .sh
|
|
|
|
|
2019-11-03 15:54:36 +01:00
|
|
|
check_PROGRAMS = api
|
|
|
|
api_SOURCES = api.c
|
2019-11-04 20:09:54 +01:00
|
|
|
api_CFLAGS = -I$(srcdir)/../src
|
2019-11-03 15:54:36 +01:00
|
|
|
api_LDFLAGS = -static
|
2019-11-04 20:09:54 +01:00
|
|
|
api_LDADD = ../src/libsyslog.la
|
2019-11-03 15:54:36 +01:00
|
|
|
|
2019-10-29 11:08:23 +01:00
|
|
|
TESTS = start.sh
|
2019-10-29 13:58:33 +01:00
|
|
|
TESTS += local.sh
|
2019-10-30 17:14:29 +01:00
|
|
|
TESTS += remote.sh
|
2019-11-03 15:54:36 +01:00
|
|
|
TESTS += api.sh
|
2019-11-14 01:20:42 +01:00
|
|
|
TESTS += fwd.sh
|
2019-10-29 11:08:23 +01:00
|
|
|
TESTS += stop.sh
|
2019-11-03 15:54:36 +01:00
|
|
|
|
2019-11-03 19:52:37 +01:00
|
|
|
programs: $(check_PROGRAMS)
|