Makefile.am 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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. # XML-helper
  29. nobase_include_HEADERS += \
  30. klish/kxml.h
  31. #noinst_HEADERS += \
  32. # klish/khelper.h
  33. EXTRA_DIST += \
  34. klish/ktp/Makefile.am \
  35. klish/kscheme/Makefile.am \
  36. klish/ischeme/Makefile.am \
  37. klish/ksession/Makefile.am \
  38. klish/xml-helper/Makefile.am
  39. include $(top_srcdir)/klish/ktp/Makefile.am
  40. include $(top_srcdir)/klish/kscheme/Makefile.am
  41. include $(top_srcdir)/klish/ischeme/Makefile.am
  42. include $(top_srcdir)/klish/ksession/Makefile.am
  43. include $(top_srcdir)/klish/xml-helper/Makefile.am
  44. #if TESTC
  45. #include $(top_srcdir)/klish/testc_module/Makefile.am
  46. #endif