You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
968 B
32 lines
968 B
loggerdir = $(pluginsdir)/logger
|
|
|
|
libconsole_logger_plugin_la_SOURCES = logger/console.c
|
|
libfile_logger_plugin_la_SOURCES = logger/file.c
|
|
logger_LTLIBRARIES = libconsole_logger_plugin.la libfile_logger_plugin.la
|
|
|
|
libsyslog_plugin_la_SOURCES = logger/syslog.c
|
|
if HAVE_SYSLOG
|
|
logger_LTLIBRARIES += libsyslog_plugin.la
|
|
endif
|
|
|
|
libsd_journal_plugin_la_SOURCES = logger/journal.c
|
|
libsd_journal_plugin_la_CPPFLAGS = $(AM_CPPFLAGS) $(SYSTEMD_CFLAGS)
|
|
libsd_journal_plugin_la_LIBADD = $(SYSTEMD_LIBS)
|
|
if HAVE_SYSTEMD
|
|
logger_LTLIBRARIES += libsd_journal_plugin.la
|
|
endif
|
|
|
|
libandroid_logger_plugin_la_SOURCES = logger/android.c
|
|
libandroid_logger_plugin_la_LIBADD = -llog
|
|
if HAVE_ANDROID
|
|
logger_LTLIBRARIES += libandroid_logger_plugin.la
|
|
endif
|
|
|
|
libjson_tracer_plugin_la_SOURCES = logger/json.c
|
|
logger_LTLIBRARIES += libjson_tracer_plugin.la
|
|
|
|
libemscripten_logger_plugin_la_SOURCES = logger/emscripten.c
|
|
|
|
if HAVE_EMSCRIPTEN
|
|
logger_LTLIBRARIES += libemscripten_logger_plugin.la
|
|
endif
|
|
|