mirror of
https://github.com/rsyslog/rsyslog.git
synced 2026-08-30 23:20:17 +02:00
another milestone commit: the program works, the new interface is used, some more cleanup is needed and the per-ruleset config options are still missing. But we are getting closer...
41 lines
769 B
Makefile
41 lines
769 B
Makefile
sbin_PROGRAMS =
|
|
man_MANS = rsyslogd.8 rsyslog.conf.5
|
|
|
|
sbin_PROGRAMS += rsyslogd
|
|
rsyslogd_SOURCES = \
|
|
syslogd.c \
|
|
syslogd.h \
|
|
omshell.c \
|
|
omshell.h \
|
|
omusrmsg.c \
|
|
omusrmsg.h \
|
|
omfwd.c \
|
|
omfwd.h \
|
|
omfile.c \
|
|
omfile.h \
|
|
omdiscard.c \
|
|
omdiscard.h \
|
|
pmrfc5424.c \
|
|
pmrfc5424.h \
|
|
pmrfc3164.c \
|
|
pmrfc3164.h \
|
|
iminternal.c \
|
|
iminternal.h \
|
|
pidfile.c \
|
|
pidfile.h \
|
|
\
|
|
../dirty.h
|
|
rsyslogd_CPPFLAGS = $(PTHREADS_CFLAGS) $(RSRT_CFLAGS)
|
|
rsyslogd_LDADD = $(ZLIB_LIBS) $(PTHREADS_LIBS) $(RSRT_LIBS) $(SOL_LIBS)
|
|
rsyslogd_LDFLAGS = -export-dynamic
|
|
|
|
if ENABLE_DIAGTOOLS
|
|
sbin_PROGRAMS += rsyslog_diag_hostname msggen zpipe
|
|
rsyslog_diag_hostname_SOURCES = gethostn.c
|
|
zpipe_SOURCES = zpipe.c
|
|
zpipe_LDADD = -lz
|
|
msggen_SOURCES = msggen.c
|
|
endif
|
|
|
|
EXTRA_DIST = $(man_MANS)
|