qse/samples/si/Makefile.am

74 lines
1.2 KiB
Makefile
Raw Normal View History

2015-10-01 15:51:15 +00:00
AUTOMAKE_OPTIONS = nostdinc
AM_CPPFLAGS = \
-I$(top_builddir)/include \
-I$(top_srcdir)/include \
-I$(includedir)
bin_PROGRAMS = \
2016-04-29 03:55:42 +00:00
dir01 \
2016-04-28 15:43:33 +00:00
fio01 \
fio02 \
2016-04-29 03:55:42 +00:00
fs01 \
fs02 \
fs03 \
glob01 \
2017-09-16 04:10:14 +00:00
log01 \
2016-04-29 03:55:42 +00:00
nwad01 \
nwif01 \
nwif02 \
2016-04-28 15:43:33 +00:00
pio01 \
rwl01 \
sck01 \
2016-04-28 15:43:33 +00:00
sio01 \
sio02 \
2016-04-29 03:55:42 +00:00
sio03 \
spl01 \
2018-01-26 10:03:58 +00:00
task01 \
thr01
2018-01-26 10:03:58 +00:00
2016-04-28 14:33:10 +00:00
AM_LDFLAGS = -L../../lib/si -L../../lib/cmn
LDADD = -lqsesi -lqsecmn
2015-10-01 15:51:15 +00:00
if WIN32
LDADD += $(UNICOWS_LIBS)
endif
2016-04-29 03:55:42 +00:00
dir01_SOURCES = dir01.c
2016-04-28 15:43:33 +00:00
fio01_SOURCES = fio01.c
fio02_SOURCES = fio02.c
2016-04-29 03:55:42 +00:00
fs01_SOURCES = fs01.c
fs02_SOURCES = fs02.c
fs03_SOURCES = fs03.c
glob01_SOURCES = glob01.c
2017-09-16 04:10:14 +00:00
log01_SOURCES = log01.c
2016-04-29 03:55:42 +00:00
nwad01_SOURCES = nwad01.c
nwif01_SOURCES = nwif01.c
nwif02_SOURCES = nwif02.c
2016-04-28 15:43:33 +00:00
pio01_SOURCES = pio01.c
2015-10-01 15:51:15 +00:00
rwl01_SOURCES = rwl01.c
2016-04-28 15:43:33 +00:00
sio01_SOURCES = sio01.c
sio02_SOURCES = sio02.c
sio03_SOURCES = sio03.c
spl01_SOURCES = spl01.c
2016-04-29 03:55:42 +00:00
task01_SOURCES = task01.c
2018-01-26 10:03:58 +00:00
thr01_SOURCES = thr01.c
if ENABLE_CXX
2018-07-18 04:35:41 +00:00
bin_PROGRAMS += sck01 spl02 tcpsvr01 tcpsvr02 thr02 thr03
2018-01-26 10:03:58 +00:00
sck01_SOURCES = sck01.cpp
2018-01-29 10:21:54 +00:00
spl02_SOURCES = spl02.cpp
2018-06-25 10:47:27 +00:00
tcpsvr01_SOURCES = tcpsvr01.cpp
2018-07-18 04:35:41 +00:00
tcpsvr02_SOURCES = tcpsvr02.cpp
2018-01-26 10:03:58 +00:00
thr02_SOURCES = thr02.cpp
2018-07-16 04:18:02 +00:00
thr03_SOURCES = thr03.cpp
2018-01-26 10:03:58 +00:00
tcpsvr02_LDADD = $(LDADD) -L../../lib/sttp -lqsesttp
2018-01-26 10:03:58 +00:00
endif
2016-04-28 15:43:33 +00:00