source: vscpl/test/Makefile.am@ 14:e46811708269

Last change on this file since 14:e46811708269 was 14:e46811708269, checked in by István Váradi <ivaradi@…>, 11 years ago

Added test programs for a server serving multiple clients

File size: 724 bytes
Line 
1INCLUDES=-I$(top_srcdir)/src -I$(top_builddir)/src
2
3noinst_PROGRAMS=testthread testmutex testcondvar testevent testlocsock testblkstream testmultiserver testmulticlient
4
5if TARGET_API_POSIX
6noinst_PROGRAMS+=testrandom
7endif
8
9LDADD=../src/hu/varadiistvan/scpl/libvscpl.la
10if TARGET_API_POSIX
11LDADD+=-lpthread
12endif
13if TARGET_API_WIN32
14AM_LDFLAGS=-static -static-libgcc -static-libstdc++
15endif
16
17testthread_SOURCES=testthread.cc
18
19testmutex_SOURCES=testmutex.cc
20
21testcondvar_SOURCES=testcondvar.cc
22
23testevent_SOURCES=testevent.cc
24
25testlocsock_SOURCES=testlocsock.cc
26
27testblkstream_SOURCES=testblkstream.cc
28
29testrandom_SOURCES=testrandom.cc
30
31testmultiserver_SOURCES=testmultiserver.cc
32
33testmulticlient_SOURCES=testmulticlient.cc
Note: See TracBrowser for help on using the repository browser.