rsyslog/plugins/imklog/Makefile.am
Rainer Gerhards 01405d78f4 refactored imklog linux driver, now combined with BSD driver
The Linux driver no longer supports outdated kernel symbol resolution,
which was disabled by default for very long. Also overall cleanup,
resulting in much smaller code. Linux and BSD are now covered by a
single small driver.
2012-01-23 18:05:07 +01:00

16 lines
339 B
Makefile

pkglib_LTLIBRARIES = imklog.la
imklog_la_SOURCES = imklog.c imklog.h
# select klog "driver"
if ENABLE_IMKLOG_BSD
imklog_la_SOURCES += bsd.c
endif
if ENABLE_IMKLOG_LINUX
imklog_la_SOURCES += bsd.c
endif
imklog_la_CPPFLAGS = -I$(top_srcdir) $(PTHREADS_CFLAGS) $(RSRT_CFLAGS)
imklog_la_LDFLAGS = -module -avoid-version
imklog_la_LIBADD =