[go: up one dir, main page]

Menu

[r999]: / libmona / test / Makefile.am  Maximize  Restore  History

Download this file

40 lines (27 with data), 768 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
INCLUDES =\
-I$(top_srcdir)
check_PROGRAMS = test-triangulate \
test-datafield\
test-algorithms \
test-history \
test-parser \
test-interpol \
test-concurrence
bin_PROGRAMS= mona-test-plugins
test_algorithms_SOURCES = test_algorithms.cc
test_datafield_SOURCES = test_datafield.cc
test_triangulate_SOURCES = test_triangulate.cc
test_history_SOURCES = test_history.cc
test_parser_SOURCES = test_parser.cc
test_interpol_SOURCES = test_interpol.cc
mona_test_plugins_SOURCES = test_plugins.cc
test_concurrence_SOURCES = test_concurrence.cc
LDADD = $(top_builddir)/libmona/libmona.la
check: $(check_PROGRAMS)
./test-triangulate
./test-algorithms
./test-datafield
./test-parser
./test-history
./test-interpol
./test-concurrence