Makefile.am 565 B

1234567891011121314151617181920212223
  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_CFLAGS = $(AM_CFLAGS) -fPIC
  5. libklish_helper_xml_la_LDFLAGS = -static
  6. dbdir = ${pkglibdir}/db
  7. db_LTLIBRARIES =
  8. EXTRA_DIST += \
  9. klish/kdb/libxml2/Makefile.am \
  10. klish/kdb/roxml/Makefile.am \
  11. klish/kdb/expat/Makefile.am
  12. if WITH_LIBXML2
  13. include $(top_srcdir)/klish/kdb/libxml2/Makefile.am
  14. endif
  15. if WITH_ROXML
  16. include $(top_srcdir)/klish/kdb/roxml/Makefile.am
  17. endif
  18. if WITH_EXPAT
  19. include $(top_srcdir)/klish/kdb/expat/Makefile.am
  20. endif