mirror of https://github.com/Icinga/icinga2.git
37 lines
830 B
Makefile
37 lines
830 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
pkglib_LTLIBRARIES = \
|
|
libnotification.la
|
|
|
|
CLEANFILES = \
|
|
notification-type.cpp
|
|
|
|
.conf.cpp: $(top_builddir)/tools/mkembedconfig/mkembedconfig
|
|
$(top_builddir)/tools/mkembedconfig/mkembedconfig $< $@
|
|
|
|
libnotification_la_SOURCES = \
|
|
notificationcomponent.cpp \
|
|
notificationcomponent.h \
|
|
notification-type.conf
|
|
|
|
libnotification_la_CPPFLAGS = \
|
|
$(LTDLINCL) \
|
|
$(BOOST_CPPFLAGS) \
|
|
-I${top_srcdir}/lib \
|
|
-I${top_srcdir}/components
|
|
|
|
libnotification_la_LDFLAGS = \
|
|
$(BOOST_LDFLAGS) \
|
|
-module \
|
|
-no-undefined \
|
|
@RELEASE_INFO@ \
|
|
@VERSION_INFO@
|
|
|
|
libnotification_la_LIBADD = \
|
|
$(BOOST_SIGNALS_LIB) \
|
|
$(BOOST_THREAD_LIB) \
|
|
$(BOOST_SYSTEM_LIB) \
|
|
${top_builddir}/lib/base/libbase.la \
|
|
${top_builddir}/lib/config/libconfig.la \
|
|
${top_builddir}/lib/icinga/libicinga.la
|