icinga2/base/Makefile.am

80 lines
1.3 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 \
2012-03-31 15:20:38 +02:00
component.cpp \
component.h \
configobject.cpp \
configobject.h \
2012-04-18 15:42:21 +02:00
dictionary.cpp \
dictionary.h \
2012-06-24 02:56:48 +02:00
event.cpp \
event.h \
exception.cpp \
exception.h \
2012-03-28 13:24:49 +02:00
fifo.cpp \
fifo.h \
i2-base.h \
2012-07-10 12:21:19 +02:00
logger.cpp \
logger.h \
2012-03-28 13:24:49 +02:00
object.cpp \
object.h \
objectset.cpp \
objectset.h \
objectmap.cpp \
objectmap.h \
2012-06-28 15:43:49 +02:00
ringbuffer.cpp \
ringbuffer.h \
2012-03-28 13:24:49 +02:00
socket.cpp \
socket.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
tcpclient.cpp \
tcpclient.h \
tcpserver.cpp \
tcpserver.h \
tcpsocket.cpp \
tcpsocket.h \
2012-06-17 20:35:56 +02:00
threadpool.cpp \
threadpool.h \
2012-03-28 13:24:49 +02:00
timer.cpp \
timer.h \
2012-04-24 14:04:51 +02:00
tlsclient.cpp \
tlsclient.h \
unix.cpp \
2012-03-28 13:24:49 +02:00
unix.h \
2012-04-22 16:45:31 +02:00
utility.cpp \
utility.h \
2012-04-18 15:42:21 +02:00
variant.cpp \
variant.h \
win32.cpp \
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) \
2012-05-29 11:38:51 +02:00
-I${top_srcdir}/third-party/mmatch
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) \
2012-05-29 11:38:51 +02:00
${top_builddir}/third-party/mmatch/libmmatch.la