1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- SUBDIRS = . tests
- AM_CPPFLAGS = -I$(top_srcdir)/src/lib -I$(top_builddir)/src/lib
- AM_CPPFLAGS += $(BOOST_INCLUDES)
- AM_CXXFLAGS = $(B10_CXXFLAGS)
- lib_LTLIBRARIES = libb10-pydnspp.la
- libb10_pydnspp_la_SOURCES = pydnspp_common.cc pydnspp_common.h pydnspp_towire.h
- libb10_pydnspp_la_SOURCES += name_python.cc name_python.h
- libb10_pydnspp_la_SOURCES += nsec3hash_python.cc nsec3hash_python.h
- libb10_pydnspp_la_SOURCES += rrset_python.cc rrset_python.h
- libb10_pydnspp_la_SOURCES += rrclass_python.cc rrclass_python.h
- libb10_pydnspp_la_SOURCES += rrtype_python.cc rrtype_python.h
- libb10_pydnspp_la_SOURCES += rrttl_python.cc rrttl_python.h
- libb10_pydnspp_la_SOURCES += rdata_python.cc rdata_python.h
- libb10_pydnspp_la_SOURCES += serial_python.cc serial_python.h
- libb10_pydnspp_la_SOURCES += messagerenderer_python.cc messagerenderer_python.h
- libb10_pydnspp_la_SOURCES += rcode_python.cc rcode_python.h
- libb10_pydnspp_la_SOURCES += opcode_python.cc opcode_python.h
- libb10_pydnspp_la_SOURCES += question_python.cc question_python.h
- libb10_pydnspp_la_SOURCES += tsigkey_python.cc tsigkey_python.h
- libb10_pydnspp_la_SOURCES += tsigerror_python.cc tsigerror_python.h
- libb10_pydnspp_la_SOURCES += tsig_rdata_python.cc tsig_rdata_python.h
- libb10_pydnspp_la_SOURCES += tsigrecord_python.cc tsigrecord_python.h
- libb10_pydnspp_la_SOURCES += tsig_python.cc tsig_python.h
- libb10_pydnspp_la_SOURCES += edns_python.cc edns_python.h
- libb10_pydnspp_la_SOURCES += message_python.cc message_python.h
- libb10_pydnspp_la_CPPFLAGS = $(AM_CPPFLAGS) $(PYTHON_INCLUDES)
- libb10_pydnspp_la_CXXFLAGS = $(AM_CXXFLAGS) $(PYTHON_CXXFLAGS)
- libb10_pydnspp_la_LDFLAGS = $(PYTHON_LDFLAGS)
- pyexec_LTLIBRARIES = pydnspp.la
- pydnspp_la_SOURCES = pydnspp.cc
- pydnspp_la_CPPFLAGS = $(AM_CPPFLAGS) $(PYTHON_INCLUDES)
- # Note: PYTHON_CXXFLAGS may have some -Wno... workaround, which must be
- # placed after -Wextra defined in AM_CXXFLAGS
- pydnspp_la_CXXFLAGS = $(AM_CXXFLAGS) $(PYTHON_CXXFLAGS)
- pydnspp_la_LDFLAGS = $(PYTHON_LDFLAGS)
- EXTRA_DIST = tsigerror_python_inc.cc
- EXTRA_DIST += message_python_inc.cc
- EXTRA_DIST += nsec3hash_python_inc.cc
- # Python prefers .so, while some OSes (specifically MacOS) use a different
- # suffix for dynamic objects. -module is necessary to work this around.
- pydnspp_la_LDFLAGS += -module -avoid-version
- pydnspp_la_LIBADD = $(top_builddir)/src/lib/dns/libb10-dns++.la
- pydnspp_la_LIBADD += $(top_builddir)/src/lib/exceptions/libb10-exceptions.la
- pydnspp_la_LIBADD += libb10-pydnspp.la
- pydnspp_la_LIBADD += $(PYTHON_LIB)
|