Makefile.am 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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/kentry.h \
  18. klish/kplugin.h \
  19. klish/kaction.h \
  20. klish/khotkey.h \
  21. klish/ksym.h \
  22. klish/kdb.h
  23. # iScheme
  24. nobase_include_HEADERS += \
  25. klish/ischeme.h \
  26. klish/iplugin.h \
  27. klish/iaction.h \
  28. klish/ihotkey.h \
  29. klish/ientry.h
  30. # Session
  31. nobase_include_HEADERS += \
  32. klish/kudata.h \
  33. klish/kustore.h \
  34. klish/kcontext_base.h \
  35. klish/kcontext.h \
  36. klish/kpath.h \
  37. klish/kexec.h \
  38. klish/kpargv.h \
  39. klish/ksession.h \
  40. klish/ksession_parse.h
  41. # XML-helper
  42. nobase_include_HEADERS += \
  43. klish/kxml.h
  44. #noinst_HEADERS += \
  45. # klish/khelper.h
  46. EXTRA_DIST += \
  47. klish/ktp/Makefile.am \
  48. klish/kscheme/Makefile.am \
  49. klish/ischeme/Makefile.am \
  50. klish/ksession/Makefile.am \
  51. klish/xml-helper/Makefile.am
  52. include $(top_srcdir)/klish/ktp/Makefile.am
  53. include $(top_srcdir)/klish/kscheme/Makefile.am
  54. include $(top_srcdir)/klish/ischeme/Makefile.am
  55. include $(top_srcdir)/klish/ksession/Makefile.am
  56. include $(top_srcdir)/klish/xml-helper/Makefile.am
  57. #if TESTC
  58. #include $(top_srcdir)/klish/testc_module/Makefile.am
  59. #endif