mirror of https://github.com/Icinga/icinga2.git
51 lines
746 B
Makefile
51 lines
746 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
|
|
noinst_LTLIBRARIES = \
|
|
libbase.la
|
|
|
|
libbase_la_SOURCES = \
|
|
application.cpp \
|
|
application.h \
|
|
component.cpp \
|
|
component.h \
|
|
condvar.cpp \
|
|
condvar.h \
|
|
confighive.cpp \
|
|
confighive.h \
|
|
configobject.cpp \
|
|
configobject.h \
|
|
delegate.h \
|
|
event.h \
|
|
fifo.cpp \
|
|
fifo.h \
|
|
i2-base.h \
|
|
memory.cpp \
|
|
memory.h \
|
|
mutex.cpp \
|
|
mutex.h \
|
|
object.cpp \
|
|
object.h \
|
|
socket.cpp \
|
|
socket.h \
|
|
tcpclient.cpp \
|
|
tcpclient.h \
|
|
tcpserver.cpp \
|
|
tcpserver.h \
|
|
tcpsocket.cpp \
|
|
tcpsocket.h \
|
|
thread.cpp \
|
|
thread.h \
|
|
timer.cpp \
|
|
timer.h \
|
|
unix.cpp \
|
|
unix.h \
|
|
win32.cpp \
|
|
win32.h
|
|
|
|
libbase_la_LIBADD=$(LIBLTDL)
|
|
libbase_la_LDFLAGS=-pthread
|
|
|
|
AM_CFLAGS=$(LTDLINCL)
|
|
AM_CXXFLAGS=$(LTDLINCL)
|