sysklogd/test/Makefile.am

26 lines
707 B
Makefile
Raw Normal View History

EXTRA_DIST = lib.sh opts.sh
EXTRA_DIST += api.sh local.sh unicode.sh remote.sh fwd.sh mark.sh \
facility.sh notify.sh rotate_all.sh
CLEANFILES = *~ *.trs *.log
TEST_EXTENSIONS = .sh
TESTS_ENVIRONMENT= unshare -mrun
check_PROGRAMS = api
api_SOURCES = api.c
api_CFLAGS = -I$(srcdir)/../src
api_LDFLAGS = -static
api_LDADD = ../src/libsyslog.la
TESTS = opts.sh
TESTS += local.sh
TESTS += unicode.sh
TESTS += remote.sh
TESTS += api.sh
TESTS += facility.sh
TESTS += fwd.sh
TESTS += mark.sh
2022-01-20 19:03:45 +05:30
TESTS += notify.sh
TESTS += rotate_all.sh
programs: $(check_PROGRAMS)