Makefile.am 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. lib_LTLIBRARIES += libklish.la
  2. libklish_la_SOURCES =
  3. libklish_la_LDFLAGS = $(AM_LDFLAGS) $(VERSION_INFO)
  4. #if TESTC
  5. #libklish_la_CFLAGS += -DTESTC
  6. #endif
  7. # Common
  8. nobase_include_HEADERS += \
  9. klish/khelper.h
  10. # KTP
  11. nobase_include_HEADERS += \
  12. klish/ktp.h \
  13. klish/ktp_session.h
  14. # Scheme
  15. nobase_include_HEADERS += \
  16. klish/kscheme.h \
  17. klish/kview.h \
  18. klish/kcommand.h \
  19. klish/kparam.h \
  20. klish/kplugin.h \
  21. klish/kaction.h \
  22. klish/kptype.h \
  23. klish/ksym.h
  24. # Session
  25. nobase_include_HEADERS += \
  26. klish/kudata.h \
  27. klish/kustore.h \
  28. klish/kcontext.h
  29. # XML-helper
  30. nobase_include_HEADERS += \
  31. klish/kxml.h
  32. #noinst_HEADERS += \
  33. # klish/khelper.h
  34. EXTRA_DIST += \
  35. klish/ktp/Makefile.am \
  36. klish/kscheme/Makefile.am \
  37. klish/ischeme/Makefile.am \
  38. klish/ksession/Makefile.am \
  39. klish/xml-helper/Makefile.am
  40. include $(top_srcdir)/klish/ktp/Makefile.am
  41. include $(top_srcdir)/klish/kscheme/Makefile.am
  42. include $(top_srcdir)/klish/ischeme/Makefile.am
  43. include $(top_srcdir)/klish/ksession/Makefile.am
  44. include $(top_srcdir)/klish/xml-helper/Makefile.am
  45. #if TESTC
  46. #include $(top_srcdir)/klish/testc_module/Makefile.am
  47. #endif