2016-04-28 14:33:10 +00:00
|
|
|
AUTOMAKE_OPTIONS = nostdinc
|
|
|
|
|
|
|
|
AM_CPPFLAGS = \
|
|
|
|
-I$(top_builddir)/include \
|
|
|
|
-I$(top_srcdir)/include
|
|
|
|
|
2016-04-29 03:55:42 +00:00
|
|
|
noinst_HEADERS = \
|
|
|
|
fs-prv.h \
|
|
|
|
glob-imp.h
|
|
|
|
|
2016-04-28 14:33:10 +00:00
|
|
|
lib_LTLIBRARIES = libqsesi.la
|
|
|
|
libqsesi_la_SOURCES = \
|
|
|
|
cnd.c \
|
2016-04-29 03:55:42 +00:00
|
|
|
dir.c \
|
2016-04-28 14:33:10 +00:00
|
|
|
fio.c \
|
2016-04-29 03:55:42 +00:00
|
|
|
fs.c \
|
|
|
|
fs-attr.c \
|
|
|
|
fs-copy.c \
|
|
|
|
fs-delete.c \
|
|
|
|
fs-err.c \
|
|
|
|
fs-make.c \
|
|
|
|
fs-move.c \
|
2019-03-13 06:38:54 +00:00
|
|
|
fs-util.c \
|
2016-04-29 03:55:42 +00:00
|
|
|
glob.c \
|
2016-04-28 14:33:10 +00:00
|
|
|
intr.c \
|
2017-09-14 18:19:51 +00:00
|
|
|
log.c \
|
2016-04-28 14:33:10 +00:00
|
|
|
mtx.c \
|
|
|
|
mux.c \
|
2018-10-22 02:27:34 +00:00
|
|
|
netlink.c \
|
2016-04-28 15:43:33 +00:00
|
|
|
nwad.c \
|
|
|
|
nwad-skad.c \
|
2016-04-28 15:29:28 +00:00
|
|
|
nwif.c \
|
2016-04-28 15:43:33 +00:00
|
|
|
nwif-cfg.c \
|
2016-04-28 14:33:10 +00:00
|
|
|
nwio.c \
|
2018-06-25 15:52:05 +00:00
|
|
|
os.c \
|
2016-04-28 14:33:10 +00:00
|
|
|
pio.c \
|
|
|
|
rwl.c \
|
2016-04-28 15:43:33 +00:00
|
|
|
sck.c \
|
2017-09-26 13:49:16 +00:00
|
|
|
sinfo.c \
|
2016-04-28 14:33:10 +00:00
|
|
|
sio.c \
|
|
|
|
task.c \
|
|
|
|
thr.c \
|
2017-03-20 09:46:45 +00:00
|
|
|
thr-prv.h \
|
2016-04-28 14:33:10 +00:00
|
|
|
tio.c
|
|
|
|
|
|
|
|
libqsesi_la_CFLAGS = $(PTHREAD_CFLAGS)
|
|
|
|
libqsesi_la_LDFLAGS = -L../cmn -version-info 1:0:0 -no-undefined
|
2016-04-28 15:57:20 +00:00
|
|
|
libqsesi_la_LIBADD = -lqsecmn $(PTHREAD_LIBS) $(SSL_LIBS)
|
2019-06-30 14:38:24 +00:00
|
|
|
libqsesi_la_DEPENDENCIES = ../../lib/cmn/libqsecmn.la
|
2016-04-28 14:33:10 +00:00
|
|
|
|
|
|
|
if ENABLE_CXX
|
2020-08-06 11:42:39 +00:00
|
|
|
libqsesi_la_SOURCES += \
|
2018-07-20 08:48:33 +00:00
|
|
|
App.cpp \
|
2019-03-13 06:38:54 +00:00
|
|
|
Path.cpp \
|
2016-04-28 14:33:10 +00:00
|
|
|
SocketAddress.cpp \
|
2018-01-26 10:03:58 +00:00
|
|
|
Socket.cpp \
|
2018-06-25 10:47:27 +00:00
|
|
|
TcpServer.cpp \
|
2018-01-26 10:03:58 +00:00
|
|
|
Thread.cpp
|
2016-04-28 14:33:10 +00:00
|
|
|
endif
|
|
|
|
|