icinga2/lib/python/Makefile.am

32 lines
596 B
Makefile
Raw Normal View History

2013-02-14 14:58:26 +01:00
## Process this file with automake to produce Makefile.in
if PYTHON_USE
pkglib_LTLIBRARIES = \
libpython.la
libpython_la_SOURCES = \
pythoninterpreter.cpp \
pythoninterpreter.h \
pythonlanguage.cpp \
pythonlanguage.h
libpython_la_CPPFLAGS = \
-DI2_PYTHON_BUILD \
2013-07-02 16:56:01 +02:00
$(LTDLINCL) \
2013-02-14 14:58:26 +01:00
$(BOOST_CPPFLAGS) \
@PYTHON_CSPEC@ \
2013-03-16 21:18:53 +01:00
-I${top_srcdir}/lib
2013-02-14 14:58:26 +01:00
libpython_la_LDFLAGS = \
$(BOOST_LDFLAGS) \
@PYTHON_LSPEC@
-no-undefined \
@RELEASE_INFO@ \
@VERSION_INFO@
libpython_la_LIBADD = \
$(BOOST_THREAD_LIB) \
${top_builddir}/lib/base/libbase.la \
${top_builddir}/lib/config/libconfig.la
2013-02-14 14:58:26 +01:00
endif