source: xplcommon/test/Makefile.am@ 29:54c2d451f8a0

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

Implemented a blocking stream and a corresponding trst program

File size: 883 bytes
Line 
1INCLUDES=-I$(top_srcdir)/src
2
3noinst_PROGRAMS=testevent testlocsock testblkstream
4if TARGET_API_POSIX
5noinst_PROGRAMS+=testrandom
6endif
7
8testevent_SOURCES=testevent.cc
9testevent_LDADD=../src/xplcommon/libxplcommon.la
10if TARGET_API_POSIX
11testevent_LDADD+=-lpthread
12endif
13if TARGET_API_WIN32
14testevent_LDFLAGS=-static-libgcc -static-libstdc++
15endif
16
17testlocsock_SOURCES=testlocsock.cc
18testlocsock_LDADD=../src/xplcommon/libxplcommon.la
19if TARGET_API_POSIX
20testlocsock_LDADD+=-lpthread
21endif
22if TARGET_API_WIN32
23testlocsock_LDFLAGS=-static-libgcc -static-libstdc++
24endif
25
26testblkstream_SOURCES=testblkstream.cc
27testblkstream_LDADD=../src/xplcommon/libxplcommon.la
28if TARGET_API_POSIX
29testblkstream_LDADD+=-lpthread
30endif
31if TARGET_API_WIN32
32testblkstream_LDFLAGS=-static-libgcc -static-libstdc++
33endif
34
35testrandom_SOURCES=testrandom.cc
36testrandom_LDADD=../src/xplcommon/libxplcommon.la
Note: See TracBrowser for help on using the repository browser.