| 1 | 1 |
EXTRA_DIST += \ |
| 2 | 2 |
lemon/Makefile \ |
| 3 | 3 |
lemon/lemon.pc.in |
| 4 | 4 |
|
| 5 | 5 |
pkgconfig_DATA += lemon/lemon.pc |
| 6 | 6 |
|
| 7 | 7 |
lib_LTLIBRARIES += lemon/libemon.la |
| 8 | 8 |
|
| 9 | 9 |
lemon_libemon_la_SOURCES = \ |
| 10 | 10 |
lemon/base.cc \ |
| 11 | 11 |
lemon/random.cc |
| 12 | 12 |
|
| 13 | 13 |
|
| 14 | 14 |
lemon_libemon_la_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS) $(SOPLEX_CXXFLAGS) |
| 15 | 15 |
lemon_libemon_la_LDFLAGS = $(GLPK_LIBS) $(CPLEX_LIBS) $(SOPLEX_LIBS) |
| 16 | 16 |
|
| 17 | 17 |
lemon_HEADERS += \ |
| 18 |
lemon/concept_check.h \ |
|
| 18 | 19 |
lemon/dim2.h \ |
| 19 | 20 |
lemon/error.h \ |
| 20 | 21 |
lemon/list_graph.h \ |
| 21 | 22 |
lemon/maps.h \ |
| 22 | 23 |
lemon/random.h \ |
| 23 | 24 |
lemon/tolerance.h |
| 24 | 25 |
|
| 25 | 26 |
bits_HEADERS += \ |
| 26 | 27 |
lemon/bits/alteration_notifier.h \ |
| 27 | 28 |
lemon/bits/array_map.h \ |
| 28 | 29 |
lemon/bits/base_extender.h \ |
| 29 | 30 |
lemon/bits/default_map.h \ |
| 30 | 31 |
lemon/bits/graph_extender.h \ |
| 31 | 32 |
lemon/bits/invalid.h \ |
| 32 | 33 |
lemon/bits/map_extender.h \ |
| 33 | 34 |
lemon/bits/traits.h \ |
| 34 | 35 |
lemon/bits/utility.h \ |
| 35 | 36 |
lemon/bits/vector_map.h |
| 36 | 37 |
|
| 37 | 38 |
concept_HEADERS += \ |
| 38 | 39 |
lemon/concept_check.h \ |
| 39 | 40 |
lemon/concepts/digraph.h \ |
| 40 | 41 |
lemon/concepts/graph.h \ |
| 41 | 42 |
lemon/concepts/maps.h \ |
| 1 | 1 |
EXTRA_DIST += \ |
| 2 | 2 |
test/Makefile |
| 3 | 3 |
|
| 4 | 4 |
noinst_HEADERS += \ |
| 5 | 5 |
test/digraph_test.h \ |
| 6 | 6 |
test/map_test.h \ |
| 7 | 7 |
test/test_tools.h |
| 8 | 8 |
|
| 9 | 9 |
check_PROGRAMS += \ |
| 10 | 10 |
test/digraph_test \ |
| 11 | 11 |
test/dim_test \ |
| 12 | 12 |
test/graph_test \ |
| 13 |
test/maps_test \ |
|
| 13 | 14 |
test/random_test \ |
| 14 | 15 |
test/test_tools_fail \ |
| 15 | 16 |
test/test_tools_pass |
| 16 | 17 |
|
| 17 | 18 |
TESTS += $(check_PROGRAMS) |
| 18 | 19 |
XFAIL_TESTS += test/test_tools_fail$(EXEEXT) |
| 19 | 20 |
|
| 20 | 21 |
test_digraph_test_SOURCES = test/digraph_test.cc |
| 21 | 22 |
test_dim_test_SOURCES = test/dim_test.cc |
| 22 | 23 |
#test_error_test_SOURCES = test/error_test.cc |
| 23 | 24 |
test_graph_test_SOURCES = test/graph_test.cc |
| 25 |
test_maps_test_SOURCES = test/maps_test.cc |
|
| 24 | 26 |
test_random_test_SOURCES = test/random_test.cc |
| 25 | 27 |
test_test_tools_fail_SOURCES = test/test_tools_fail.cc |
| 26 | 28 |
test_test_tools_pass_SOURCES = test/test_tools_pass.cc |
0 comments (0 inline)