123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- lib_LTLIBRARIES += libklish.la
- libklish_la_SOURCES =
- libklish_la_LDFLAGS = $(AM_LDFLAGS) $(VERSION_INFO)
- #if TESTC
- #libklish_la_CFLAGS += -DTESTC
- #endif
- # Common
- nobase_include_HEADERS += \
- klish/khelper.h
- # KTP
- nobase_include_HEADERS += \
- klish/ktp.h \
- klish/ktp_session.h
- # Scheme
- nobase_include_HEADERS += \
- klish/kscheme.h \
- klish/kview.h \
- klish/kcommand.h \
- klish/kparam.h \
- klish/kplugin.h \
- klish/kaction.h \
- klish/kptype.h \
- klish/ksym.h
- # Session
- nobase_include_HEADERS += \
- klish/kudata.h \
- klish/kustore.h
- # Database
- nobase_include_HEADERS += \
- klish/kdb.h
- #noinst_HEADERS += \
- # klish/khelper.h
- EXTRA_DIST += \
- klish/ktp/Makefile.am \
- klish/ischeme/Makefile.am \
- klish/kscheme/Makefile.am \
- klish/ksession/Makefile.am
- include $(top_srcdir)/klish/ktp/Makefile.am
- include $(top_srcdir)/klish/ischeme/Makefile.am
- include $(top_srcdir)/klish/kscheme/Makefile.am
- include $(top_srcdir)/klish/ksession/Makefile.am
- #if TESTC
- #include $(top_srcdir)/klish/testc_module/Makefile.am
- #endif
|