From f52c7ea9d045db3a1f313f92ef786cbb58594a50 Mon Sep 17 00:00:00 2001 From: David Oberhollenzer Date: Sat, 2 Jun 2018 16:20:02 +0200 Subject: Add minimalistic syslog daemon For now this daemon simply dumps all syslog messages into seperate log files and doesn't do much parsing. Since the messages are readable ASCII anyway, this should not be to much of a problem and sufficient for debugging. Signed-off-by: David Oberhollenzer --- syslogd/Makemodule.am | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 syslogd/Makemodule.am (limited to 'syslogd/Makemodule.am') diff --git a/syslogd/Makemodule.am b/syslogd/Makemodule.am new file mode 100644 index 0000000..489acc9 --- /dev/null +++ b/syslogd/Makemodule.am @@ -0,0 +1,8 @@ +usyslogd_SOURCES = syslogd/main.c +usyslogd_SOURCES += syslogd/logfile.c syslogd/logfile.h +usyslogd_CPPFLAGS = $(AM_CPPFLAGS) +usyslogd_CFLAGS = $(AM_CFLAGS) +usyslogd_LDFLAGS = $(AM_LDFLAGS) +usyslogd_LDADD = libinit.a + +sbin_PROGRAMS += usyslogd -- cgit v1.2.3