qse/qse/lib/cmn/Makefile.am

153 lines
2.0 KiB
Makefile
Raw 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 \
fmt.h \
fmt-intmax.h \
fmt-out.h \
fs.h \
2014-12-14 15:55:03 +00:00
glob.h \
mem.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 \
uni-trait.h
libqsecmn_la_SOURCES = \
alg-base64.c \
alg-rand.c \
2011-09-01 09:43:46 +00:00
alg-search.c \
alg-sort.c \
2009-06-04 15:50:32 +00:00
assert.c \
2011-09-01 09:43:46 +00:00
chr.c \
dir.c \
2011-09-01 09:43:46 +00:00
dll.c \
env.c \
gdl.c \
htb.c \
fio.c \
fma.c \
fmt-intmax.c \
fmt-out.c \
fs.c \
2014-12-17 15:29:05 +00:00
fs-attr.c \
2014-12-09 13:41:58 +00:00
fs-copy.c \
fs-delete.c \
fs-err.c \
2014-11-26 15:33:30 +00:00
fs-make.c \
fs-move.c \
glob.c \
hton.c \
ipad.c \
lda.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 \
mux.c \
nwad.c \
nwad-skad.c \
nwif.c \
nwif-cfg.c \
2012-04-27 14:33:14 +00:00
nwio.c \
2011-09-01 09:43:46 +00:00
oht.c \
opt.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-09-01 09:43:46 +00:00
pio.c \
2011-10-14 22:57:41 +00:00
pma.c \
2011-09-01 09:43:46 +00:00
rbt.c \
rex.c \
2014-08-25 16:18:17 +00:00
sck.c \
2011-09-01 09:43:46 +00:00
sio.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-word.c \
task.c \
2011-09-01 09:43:46 +00:00
time.c \
tio.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
lib_LTLIBRARIES += libqsecmnxx.la
libqsecmnxx_la_SOURCES = \
2015-03-18 14:45:52 +00:00
Mmgr.cpp StdMmgr.cpp HeapMmgr.cpp Mmged.cpp Mpool.cpp String.cpp
libqsecmnxx_la_LDFLAGS = -version-info 1:0:0 -no-undefined
libqsecmnxx_la_LIBADD = -lqsecmn
endif