qse/lib/si/Makefile.am

61 lines
894 B
Makefile
Raw Normal View History

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 \
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 \
sinfo.c \
2016-04-28 14:33:10 +00:00
sio.c \
task.c \
thr.c \
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)
libqsesi_la_DEPENDENCIES = ../../lib/cmn/libqsecmn.la
2016-04-28 14:33:10 +00:00
if ENABLE_CXX
libqsesi_la_SOURCES += \
App.cpp \
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