icinga2/lib/base/Makefile.am

113 lines
1.9 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
2012-04-02 10:29:08 +02:00
libbase_la_SOURCES = \
2012-03-28 13:24:49 +02:00
application.cpp \
application.h \
array.cpp \
array.h \
asynctask.h \
2013-03-04 15:52:42 +01:00
attribute.cpp \
attribute.h \
2012-11-22 12:04:32 +01:00
connection.cpp \
connection.h \
convert.cpp \
convert.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 \
dynamictype.cpp \
dynamictype.h \
2013-02-15 06:47:26 +01:00
eventqueue.cpp \
eventqueue.h \
exception.cpp \
exception.h \
2012-03-28 13:24:49 +02:00
fifo.cpp \
fifo.h \
2013-02-14 14:58:26 +01:00
i2-base.cpp \
2012-03-28 13:24:49 +02:00
i2-base.h \
2012-07-10 12:21:19 +02:00
logger.cpp \
logger.h \
2012-07-24 13:45:21 +02:00
netstring.cpp \
netstring.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 \
2012-06-28 15:43:49 +02:00
ringbuffer.cpp \
ringbuffer.h \
script.cpp \
script.h \
2012-07-14 15:59:59 +02:00
scriptfunction.cpp \
scriptfunction.h \
scriptinterpreter.cpp \
scriptinterpreter.h \
scriptlanguage.cpp \
scriptlanguage.h \
2012-07-14 15:59:59 +02:00
scripttask.cpp \
scripttask.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 \
2012-07-10 13:31:17 +02:00
sysloglogger.cpp \
sysloglogger.h \
2012-03-28 13:24:49 +02:00
tcpsocket.cpp \
tcpsocket.h \
timer.cpp \
timer.h \
2012-11-22 12:04:32 +01:00
tlsstream.cpp \
tlsstream.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 \
2012-03-28 13:24:49 +02:00
win32.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 \
$(LTDLINCL) \
2012-05-25 22:04:03 +02:00
$(BOOST_CPPFLAGS) \
2012-05-29 16:24:55 +02:00
$(OPENSSL_INCLUDES) \
-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 = \
$(LIBLTDL) \
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