source: vscpl/test/Makefile.am@ 11:8896990dfd4a

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

Imported the test program for the pseudo-random number generator

File size: 604 bytes
Line 
1INCLUDES=-I$(top_srcdir)/src -I$(top_builddir)/src
2
3noinst_PROGRAMS=testthread testmutex testcondvar testevent testlocsock testblkstream
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
Note: See TracBrowser for help on using the repository browser.