Makefile.am 514 B

12345678910111213141516171819202122
  1. lib_LTLIBRARIES += libklish-helper-xml.la
  2. libklish_helper_xml_la_SOURCES = \
  3. klish/kdb/xml-common/load.c
  4. libklish_helper_xml_la_LDFLAGS = -static
  5. dbdir = ${pkglibdir}/db
  6. db_LTLIBRARIES =
  7. EXTRA_DIST += \
  8. klish/kdb/libxml2/Makefile.am \
  9. klish/kdb/roxml/Makefile.am \
  10. klish/kdb/expat/Makefile.am
  11. if WITH_LIBXML2
  12. include $(top_srcdir)/klish/kdb/libxml2/Makefile.am
  13. endif
  14. if WITH_ROXML
  15. include $(top_srcdir)/klish/kdb/roxml/Makefile.am
  16. endif
  17. if WITH_EXPAT
  18. include $(top_srcdir)/klish/kdb/expat/Makefile.am
  19. endif