mirror of https://github.com/Icinga/icinga2.git
25 lines
514 B
Makefile
25 lines
514 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
TESTS = \
|
|
base-dictionary
|
|
|
|
check_PROGRAMS = \
|
|
base-dictionary
|
|
|
|
base_dictionary_SOURCES = \
|
|
base-dictionary.cpp
|
|
|
|
base_dictionary_CPPFLAGS = \
|
|
$(BOOST_CPPFLAGS) \
|
|
-I${top_srcdir}/base \
|
|
-I${top_srcdir}/jsonrpc \
|
|
-I${top_srcdir}/icinga \
|
|
-I${top_srcdir}
|
|
|
|
base_dictionary_LDADD = \
|
|
$(BOOST_LDFLAGS) \
|
|
$(BOOST_UNIT_TEST_FRAMEWORK_LIB) \
|
|
${top_builddir}/base/libbase.la \
|
|
${top_builddir}/jsonrpc/libjsonrpc.la \
|
|
${top_builddir}/icinga/libicinga.la
|