1 | INCLUDES=-I$(top_srcdir)/src
|
---|
2 |
|
---|
3 | noinst_PROGRAMS=testthread testevent testlocsock testblkstream testmutex testcondvar
|
---|
4 | if TARGET_API_POSIX
|
---|
5 | noinst_PROGRAMS+=testrandom
|
---|
6 | endif
|
---|
7 |
|
---|
8 | testthread_SOURCES=testthread.cc
|
---|
9 | testthread_LDADD=../src/xplcommon/libxplcommon.la
|
---|
10 | if TARGET_API_POSIX
|
---|
11 | testthread_LDADD+=-lpthread
|
---|
12 | endif
|
---|
13 | if TARGET_API_WIN32
|
---|
14 | testthread_LDFLAGS=-static-libgcc -static-libstdc++
|
---|
15 | endif
|
---|
16 |
|
---|
17 | testevent_SOURCES=testevent.cc
|
---|
18 | testevent_LDADD=../src/xplcommon/libxplcommon.la
|
---|
19 | if TARGET_API_POSIX
|
---|
20 | testevent_LDADD+=-lpthread
|
---|
21 | endif
|
---|
22 | if TARGET_API_WIN32
|
---|
23 | testevent_LDFLAGS=-static-libgcc -static-libstdc++
|
---|
24 | endif
|
---|
25 |
|
---|
26 | testlocsock_SOURCES=testlocsock.cc
|
---|
27 | testlocsock_LDADD=../src/xplcommon/libxplcommon.la
|
---|
28 | if TARGET_API_POSIX
|
---|
29 | testlocsock_LDADD+=-lpthread
|
---|
30 | endif
|
---|
31 | if TARGET_API_WIN32
|
---|
32 | testlocsock_LDFLAGS=-static-libgcc -static-libstdc++
|
---|
33 | endif
|
---|
34 |
|
---|
35 | testblkstream_SOURCES=testblkstream.cc
|
---|
36 | testblkstream_LDADD=../src/xplcommon/libxplcommon.la
|
---|
37 | if TARGET_API_POSIX
|
---|
38 | testblkstream_LDADD+=-lpthread
|
---|
39 | endif
|
---|
40 | if TARGET_API_WIN32
|
---|
41 | testblkstream_LDFLAGS=-static-libgcc -static-libstdc++
|
---|
42 | endif
|
---|
43 |
|
---|
44 | testmutex_SOURCES=testmutex.cc
|
---|
45 | testmutex_LDADD=../src/xplcommon/libxplcommon.la
|
---|
46 | if TARGET_API_POSIX
|
---|
47 | testmutex_LDADD+=-lpthread
|
---|
48 | endif
|
---|
49 | if TARGET_API_WIN32
|
---|
50 | testmutex_LDFLAGS=-static-libgcc -static-libstdc++
|
---|
51 | endif
|
---|
52 |
|
---|
53 | testcondvar_SOURCES=testcondvar.cc
|
---|
54 | testcondvar_LDADD=../src/xplcommon/libxplcommon.la
|
---|
55 | if TARGET_API_POSIX
|
---|
56 | testcondvar_LDADD+=-lpthread
|
---|
57 | endif
|
---|
58 | if TARGET_API_WIN32
|
---|
59 | testcondvar_LDFLAGS=-static-libgcc -static-libstdc++
|
---|
60 | endif
|
---|
61 |
|
---|
62 | testrandom_SOURCES=testrandom.cc
|
---|
63 | testrandom_LDADD=../src/xplcommon/libxplcommon.la
|
---|