qse/lib/cmn/Makefile.am

138 lines
1.8 KiB
Makefile
Raw Permalink Normal View History

2008-06-15 02:15:37 +00:00
2008-06-20 03:44:45 +00:00
AUTOMAKE_OPTIONS = nostdinc
2011-01-23 04:32:11 +00:00
AM_CPPFLAGS = \
-I$(top_builddir)/include \
-I$(top_srcdir)/include
2011-09-01 09:43:46 +00:00
2008-12-21 22:04:18 +00:00
lib_LTLIBRARIES = libqsecmn.la
2011-09-01 09:43:46 +00:00
noinst_HEADERS = \
cp949.h \
cp950.h \
2016-04-29 03:55:42 +00:00
fmt-prv.h \
fmt-intmax.h \
fmt-out.h \
2016-04-29 03:55:42 +00:00
mem-prv.h \
str-cat.h \
2013-10-29 14:14:43 +00:00
str-dyn.h \
str-fcpy.h \
str-fmt.h \
str-join.h \
2013-09-08 17:27:54 +00:00
str-subst.h \
syscall.h \
2012-12-28 08:48:35 +00:00
syserr.h \
2011-09-01 09:43:46 +00:00
tre.h \
tre-ast.h \
tre-compile.h \
2014-11-18 16:10:12 +00:00
tre-match-ut.h \
tre-parse.h \
tre-stack.h \
uni-case.h \
2017-09-14 18:19:51 +00:00
uni-trait.h \
va_copy.h
libqsecmn_la_SOURCES = \
alg-base64.c \
alg-rand.c \
2011-09-01 09:43:46 +00:00
alg-search.c \
alg-sort.c \
2016-09-23 14:53:51 +00:00
arr.c \
2009-06-04 15:50:32 +00:00
assert.c \
2011-09-01 09:43:46 +00:00
chr.c \
dll.c \
env.c \
gdl.c \
htb.c \
htl.c \
2011-09-01 09:43:46 +00:00
fma.c \
fmt-intmax.c \
fmt-out.c \
hton.c \
hwad.c \
ipad.c \
2009-06-04 15:50:32 +00:00
main.c \
mb8.c \
2011-12-31 15:24:48 +00:00
mbwc.c \
mbwc-str.c \
2011-09-01 09:43:46 +00:00
mem.c \
oht.c \
opt.c \
opt-cli.c \
2014-11-18 16:10:12 +00:00
path-base.c \
2011-10-14 22:57:41 +00:00
path-canon.c \
path-core.c \
path-merge.c \
2011-10-14 22:57:41 +00:00
pma.c \
2011-09-01 09:43:46 +00:00
rbt.c \
rex.c \
sll.c \
2012-01-03 14:41:15 +00:00
slmb.c \
2011-09-01 09:43:46 +00:00
str-beg.c \
str-cat.c \
str-chr.c \
str-cnv.c \
str-cmp.c \
str-cpy.c \
str-del.c \
str-dup.c \
2013-10-29 14:14:43 +00:00
str-dyn.c \
2011-09-01 09:43:46 +00:00
str-end.c \
str-excl.c \
str-fcpy.c \
str-fmt.c \
str-fnmat.c \
2011-09-01 09:43:46 +00:00
str-incl.c \
str-join.c \
2011-09-01 09:43:46 +00:00
str-len.c \
str-pac.c \
str-pbrk.c \
str-put.c \
str-rev.c \
str-rot.c \
str-set.c \
str-spl.c \
str-spn.c \
str-str.c \
str-subst.c \
str-tok.c \
str-trm.c \
str-type.c \
2011-09-01 09:43:46 +00:00
str-word.c \
time.c \
tmr.c \
2011-09-01 09:43:46 +00:00
tre.c \
tre-ast.c \
tre-compile.c \
2014-11-18 16:10:12 +00:00
tre-match-bt.c \
tre-match-pa.c \
2011-09-01 09:43:46 +00:00
tre-parse.c \
tre-stack.c \
uri.c \
2011-11-08 13:36:47 +00:00
utf8.c \
2011-09-01 09:43:46 +00:00
xma.c
if ENABLE_BUNDLED_UNICODE
libqsecmn_la_SOURCES += uni.c
endif
2012-12-18 08:12:15 +00:00
if ENABLE_XCMGRS
libqsecmn_la_SOURCES += cp949.c cp950.c
endif
libqsecmn_la_LDFLAGS = -version-info 1:0:0 -no-undefined
libqsecmn_la_LIBADD = $(SOCKET_LIBS) $(QUADMATH_LIBS)
if ENABLE_CXX
libqsecmn_la_SOURCES += \
ErrorGrab.cpp \
Mmgr.cpp \
StdMmgr.cpp \
HeapMmgr.cpp \
Mmged.cpp \
Mpool.cpp \
String.cpp
endif