icinga2/lib/base/Makefile.am

153 lines
2.7 KiB
Makefile
Raw Normal View History

2012-03-28 13:24:49 +02:00
## Process this file with automake to produce Makefile.in
2012-04-06 09:18:06 +02:00
pkglib_LTLIBRARIES = \
2012-04-02 10:29:08 +02:00
libbase.la
2012-03-28 13:24:49 +02:00
2013-10-26 09:41:45 +02:00
BUILT_SOURCES = \
application.th \
consolelogger.th \
dynamicobject.th \
filelogger.th \
logger.th \
script.th \
streamlogger.th \
sysloglogger.th
2013-10-30 12:18:08 +01:00
nodist_libbase_la_SOURCES = $(BUILT_SOURCES)
2013-10-26 09:41:45 +02:00
.ti.th: $(top_builddir)/tools/mkclass/mkclass
2013-10-30 12:18:08 +01:00
$(top_builddir)/tools/mkclass/mkclass $< > $@.tmp && mv $@.tmp $@
2013-10-26 09:41:45 +02:00
2012-04-02 10:29:08 +02:00
libbase_la_SOURCES = \
2012-03-28 13:24:49 +02:00
application.cpp \
application.h \
2013-10-26 09:41:45 +02:00
application.ti \
array.cpp \
array.h \
2013-04-04 16:08:02 +02:00
bufferedstream.cpp \
bufferedstream.h \
consolelogger.cpp \
consolelogger.h \
2013-10-26 09:41:45 +02:00
consolelogger.ti \
convert.cpp \
convert.h \
2013-08-28 08:18:58 +02:00
debug.h \
2012-04-18 15:42:21 +02:00
dictionary.cpp \
dictionary.h \
2012-07-30 10:17:29 +02:00
dynamicobject.cpp \
dynamicobject.h \
2013-10-26 09:41:45 +02:00
dynamicobject.ti \
dynamictype.cpp \
dynamictype.h \
exception.cpp \
exception.h \
2012-03-28 13:24:49 +02:00
fifo.cpp \
fifo.h \
filelogger.cpp \
filelogger.h \
2013-10-26 09:41:45 +02:00
filelogger.ti \
2012-03-28 13:24:49 +02:00
i2-base.h \
2013-08-01 11:07:26 +02:00
initialize.h \
2012-07-10 12:21:19 +02:00
logger.cpp \
logger.h \
2013-10-26 09:41:45 +02:00
logger.ti \
2013-03-16 21:18:53 +01:00
logger_fwd.h \
2012-07-24 13:45:21 +02:00
netstring.cpp \
netstring.h \
2013-04-04 16:08:02 +02:00
networkstream.cpp \
networkstream.h \
2012-03-28 13:24:49 +02:00
object.cpp \
object.h \
2013-02-24 01:10:34 +01:00
objectlock.cpp \
objectlock.h \
process.cpp \
process-unix.cpp \
process-windows.cpp \
process.h \
qstring.cpp \
qstring.h \
2013-10-26 09:41:45 +02:00
reflectionobject.cpp \
reflectionobject.h \
2013-03-15 11:19:52 +01:00
registry.h \
2012-06-28 15:43:49 +02:00
ringbuffer.cpp \
ringbuffer.h \
script.cpp \
script.h \
2013-10-26 09:41:45 +02:00
script.ti \
2012-07-14 15:59:59 +02:00
scriptfunction.cpp \
scriptfunction.h \
2013-03-25 20:47:02 +01:00
scriptfunctionwrapper.cpp \
scriptfunctionwrapper.h \
scriptinterpreter.cpp \
scriptinterpreter.h \
scriptlanguage.cpp \
scriptlanguage.h \
2013-06-25 09:21:25 +02:00
scriptvariable.cpp \
scriptvariable.h \
2013-03-15 11:19:52 +01:00
singleton.h \
2012-03-28 13:24:49 +02:00
socket.cpp \
socket.h \
stacktrace.cpp \
stacktrace.h \
stdiostream.cpp \
stdiostream.h \
2012-11-22 12:04:32 +01:00
stream.cpp \
stream.h \
stream_bio.cpp \
stream_bio.h \
streamlogger.cpp \
streamlogger.h \
2013-10-26 09:41:45 +02:00
streamlogger.ti \
2012-07-10 13:31:17 +02:00
sysloglogger.cpp \
sysloglogger.h \
2013-10-26 09:41:45 +02:00
sysloglogger.ti \
2012-03-28 13:24:49 +02:00
tcpsocket.cpp \
tcpsocket.h \
2013-03-25 18:36:15 +01:00
threadpool.cpp \
threadpool.h \
2012-03-28 13:24:49 +02:00
timer.cpp \
timer.h \
2012-11-22 12:04:32 +01:00
tlsstream.cpp \
tlsstream.h \
2013-03-18 19:02:42 +01:00
tlsutility.cpp \
tlsutility.h \
2012-03-28 13:24:49 +02:00
unix.h \
unixsocket.cpp \
unixsocket.h \
2012-04-22 16:45:31 +02:00
utility.cpp \
utility.h \
value.cpp \
value.h \
2013-09-03 14:05:03 +02:00
win32.h \
2013-09-18 09:09:16 +02:00
workqueue.cpp \
workqueue.h \
2013-09-03 14:05:03 +02:00
zlibstream.cpp \
zlibstream.h
2012-04-02 10:29:08 +02:00
2012-05-29 11:38:51 +02:00
libbase_la_CPPFLAGS = \
2012-05-09 12:10:07 +02:00
-DI2_BASE_BUILD \
2012-05-25 22:04:03 +02:00
$(BOOST_CPPFLAGS) \
2012-05-29 16:24:55 +02:00
$(OPENSSL_INCLUDES) \
2013-03-16 21:18:53 +01:00
-I${top_srcdir}/lib \
-I${top_srcdir}/third-party/execvpe \
2012-07-13 21:07:39 +02:00
-I${top_srcdir}/third-party/mmatch \
2013-03-12 14:01:01 +01:00
-I${top_srcdir}/third-party/cJSON
2012-04-02 10:29:08 +02:00
2012-05-09 12:10:07 +02:00
libbase_la_LDFLAGS = \
2012-05-29 16:24:55 +02:00
$(BOOST_LDFLAGS) \
$(OPENSSL_LDFLAGS) \
2012-05-09 12:10:07 +02:00
-no-undefined \
@RELEASE_INFO@ \
@VERSION_INFO@
2012-05-09 12:10:07 +02:00
libbase_la_LIBADD = \
$(LIBDL) \
2012-05-29 16:24:55 +02:00
$(OPENSSL_LIBS) \
$(BOOST_SIGNALS_LIB) \
2012-06-17 20:35:56 +02:00
$(BOOST_THREAD_LIB) \
$(BOOST_SYSTEM_LIB) \
${top_builddir}/third-party/execvpe/libexecvpe.la \
2012-07-13 21:07:39 +02:00
${top_builddir}/third-party/mmatch/libmmatch.la \
2013-03-12 14:01:01 +01:00
${top_builddir}/third-party/cJSON/libcJSON.la