2013-02-05 15:04:15 +00:00
|
|
|
AUTOMAKE_OPTIONS = nostdinc
|
|
|
|
|
|
|
|
AM_CPPFLAGS = \
|
|
|
|
-I$(top_builddir)/include \
|
2013-02-26 18:31:38 +00:00
|
|
|
-I$(top_srcdir)/include
|
2013-02-05 15:04:15 +00:00
|
|
|
|
|
|
|
lib_LTLIBRARIES = libqsexli.la
|
2018-07-14 17:05:08 +00:00
|
|
|
libqsexli_la_SOURCES = xli-prv.h xli.c err.c \
|
2018-01-09 10:45:43 +00:00
|
|
|
read.c read-ini.c read-json.c \
|
|
|
|
write.c write-ini.c write-json.c \
|
2019-06-10 15:09:01 +00:00
|
|
|
std.c json.c
|
2016-04-29 03:55:42 +00:00
|
|
|
libqsexli_la_LDFLAGS = -L../cmn -L../si -version-info 1:0:0 -no-undefined
|
|
|
|
libqsexli_la_LIBADD = -lqsesi -lqsecmn
|
2019-06-30 05:00:30 +00:00
|
|
|
libqsexli_la_DEPENDENCIES = ../../lib/si/libqsesi.la ../../lib/cmn/libqsecmn.la
|
2013-02-05 15:04:15 +00:00
|
|
|
|
2018-07-12 11:09:35 +00:00
|
|
|
|
|
|
|
if ENABLE_CXX
|
2020-08-06 11:42:39 +00:00
|
|
|
libqsexli_la_SOURCES += SkvEnv.cpp
|
2018-07-12 11:09:35 +00:00
|
|
|
endif
|
|
|
|
|