source: xplcommon/test/Makefile.am@ 27:11b3ec33029d

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

Implemented a pseudo-random number generator

File size: 638 bytes
Line 
1INCLUDES=-I$(top_srcdir)/src
2
3noinst_PROGRAMS=testevent testlocsock
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
26testrandom_SOURCES=testrandom.cc
27testrandom_LDADD=../src/xplcommon/libxplcommon.la
Note: See TracBrowser for help on using the repository browser.