icinga2/base/Makefile.am

66 lines
1.0 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 \
configcollection.cpp \
configcollection.h \
2012-03-31 15:20:38 +02:00
confighive.cpp \
confighive.h \
configobject.cpp \
configobject.h \
cxx11-compat.h \
2012-03-28 13:24:49 +02:00
delegate.h \
2012-04-18 15:42:21 +02:00
dictionary.cpp \
dictionary.h \
2012-05-17 19:14:03 +02:00
observable.h \
exception.cpp \
exception.h \
2012-03-28 13:24:49 +02:00
fifo.cpp \
fifo.h \
i2-base.h \
object.cpp \
object.h \
socket.cpp \
socket.h \
tcpclient.cpp \
tcpclient.h \
tcpserver.cpp \
tcpserver.h \
tcpsocket.cpp \
tcpsocket.h \
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 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 = \
-no-undefined \
@RELEASE_INFO@ \
@VERSION_INFO@
2012-05-09 12:10:07 +02:00
libbase_la_LIBADD = \
$(LIBLTDL) \
2012-05-25 22:04:03 +02:00
$(BOOST_LDFLAGS) \
2012-05-29 11:38:51 +02:00
${top_builddir}/third-party/mmatch/libmmatch.la