source: xplra/test/Makefile.am@ 112:58892a32a039

Last change on this file since 112:58892a32a039 was 112:58892a32a039, checked in by István Váradi <ivaradi@…>, 17 months ago

The test programs can be parameterized to connect over TCP

File size: 1.3 KB
Line 
1AM_CPPFLAGS=-I $(top_srcdir)/src/client/c -I$(top_srcdir)/src/plugin/src $(VSCPL_CFLAGS)
2
3LDADD=../src/client/c/hu/varadiistvan/xplra/libxplra.la $(VSCPL_LIBS)
4if TARGET_API_WIN32
5AM_LDFLAGS=-static -static-libgcc -static-libstdc++
6endif
7
8noinst_PROGRAMS=ctest basictest basicctest multigettest multigetctest multisettest multisetctest hotkeytest hotkeyctest emulator
9
10ctest_SOURCES=ctest.c
11if TARGET_API_WIN32
12ctest_LDFLAGS=-lstdc++
13endif
14
15basictest_SOURCES=basictest.cc common.cc
16
17basicctest_SOURCES=basicctest.c ccommon.c
18if TARGET_API_WIN32
19basicctest_LDFLAGS=-lstdc++
20endif
21
22multigettest_SOURCES=multigettest.cc common.cc
23
24multigetctest_SOURCES=multigetctest.c ccommon.c
25if TARGET_API_WIN32
26multigetctest_LDFLAGS=-lstdc++
27endif
28
29multisettest_SOURCES=multisettest.cc common.cc
30
31multisetctest_SOURCES=multisetctest.c ccommon.c
32if TARGET_API_WIN32
33multisetctest_LDFLAGS=-lstdc++
34endif
35
36hotkeytest_SOURCES=hotkeytest.cc common.cc
37
38hotkeyctest_SOURCES=hotkeyctest.c ccommon.c
39if TARGET_API_WIN32
40hotkeyctest_LDFLAGS=-lstdc++
41endif
42
43emulator_SOURCES=emulator.cc
44
45EXTRA_DIST=\
46 common.h \
47 common.cc \
48 ccommon.h \
49 ccommon.cc \
50 runpy.sh \
51 basictest.py \
52 multigettest.py \
53 multisettest.py \
54 hotkeytest.py
Note: See TracBrowser for help on using the repository browser.