qse/qse/lib/cmn/Makefile.am

136 lines
1.8 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 \
-I$(includedir)
2008-06-26 23:48:54 +00:00
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 \
fs.h \
mem.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 \
tre-match-utils.h \
tre-parse.h \
tre-stack.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.c \
fs.c \
fs-err.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 \
2011-10-14 22:57:41 +00:00
path-basename.c \
path-canon.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 \
sio.c \
sll.c \
2012-01-03 14:41:15 +00:00
slmb.c \
2011-11-08 13:36:47 +00:00
stdio.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 \
str-dynm.c \
str-dynw.c \
str-end.c \
str-excl.c \
str-fcpy.c \
str-fnmat.c \
2011-09-01 09:43:46 +00:00
str-incl.c \
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 \
tre.c \
tre-ast.c \
tre-compile.c \
tre-match-backtrack.c \
tre-match-parallel.c \
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
2011-01-22 02:04:22 +00:00
libqsecmn_la_LDFLAGS = -L$(libdir) -version-info 1:0:0 -no-undefined
2012-04-30 09:46:58 +00:00
libqsecmn_la_LIBADD = $(SOCKET_LIBS)
if ENABLE_CXX
lib_LTLIBRARIES += libqsecmnxx.la
libqsecmnxx_la_SOURCES = \
Mmgr.cpp StdMmgr.cpp
2011-01-22 02:04:22 +00:00
libqsecmnxx_la_LDFLAGS = -L$(libdir) -version-info 1:0:0 -no-undefined
2012-04-30 09:46:58 +00:00
libqsecmnxx_la_LIBADD =
endif