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
RevLine 
[6]1INCLUDES=-I$(top_srcdir)/src -I$(top_builddir)/src
[2]2
[14]3noinst_PROGRAMS=testthread testmutex testcondvar testevent testlocsock testblkstream testmultiserver testmulticlient
[4]4
[11]5if TARGET_API_POSIX
6noinst_PROGRAMS+=testrandom
7endif
8
[4]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
[2]16
17testthread_SOURCES=testthread.cc
[4]18
19testmutex_SOURCES=testmutex.cc
[5]20
21testcondvar_SOURCES=testcondvar.cc
[7]22
23testevent_SOURCES=testevent.cc
[8]24
25testlocsock_SOURCES=testlocsock.cc
[10]26
27testblkstream_SOURCES=testblkstream.cc
[11]28
29testrandom_SOURCES=testrandom.cc
[14]30
31testmultiserver_SOURCES=testmultiserver.cc
32
33testmulticlient_SOURCES=testmulticlient.cc
Note: See TracBrowser for help on using the repository browser.