Changeset 65:bfbc57a51fbb in lemon-main
- Timestamp:
- 02/06/08 11:52:58 (17 years ago)
- Branch:
- default
- Parents:
- 24:1f781d1f9b79 (diff), 31:742abd64255e (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent. - Phase:
- public
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
lemon/Makefile.am
r10 r65 16 16 17 17 lemon_HEADERS += \ 18 lemon/concept_check.h \ 18 19 lemon/dim2.h \ 19 20 lemon/random.h \ 20 21 lemon/list_graph.h \ 22 lemon/maps.h \ 21 23 lemon/tolerance.h 22 24 … … 25 27 lemon/bits/utility.h 26 28 27 concept_HEADERS += 29 concept_HEADERS += \ 30 lemon/concepts/maps.h -
lemon/Makefile.am
r25 r65 8 8 9 9 lemon_libemon_la_SOURCES = \ 10 lemon/base.cc 10 lemon/base.cc \ 11 lemon/random.cc 12 11 13 12 14 lemon_libemon_la_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS) $(SOPLEX_CXXFLAGS) … … 15 17 lemon_HEADERS += \ 16 18 lemon/concept_check.h \ 19 lemon/dim2.h \ 20 lemon/random.h \ 17 21 lemon/list_graph.h \ 18 22 lemon/maps.h \ -
test/Makefile.am
r10 r65 7 7 check_PROGRAMS += \ 8 8 test/dim_test \ 9 test/maps_test \ 9 10 test/random_test \ 10 11 test/test_tools_fail \ … … 15 16 16 17 test_dim_test_SOURCES = test/dim_test.cc 18 test_maps_test_SOURCES = test/maps_test.cc 17 19 test_random_test_SOURCES = test/random_test.cc 18 20 test_test_tools_fail_SOURCES = test/test_tools_fail.cc -
test/Makefile.am
r25 r65 4 4 noinst_HEADERS += \ 5 5 test/test_tools.h 6 6 7 7 check_PROGRAMS += \ 8 test/dim_test \ 8 9 test/maps_test \ 10 test/random_test \ 9 11 test/test_tools_fail \ 10 12 test/test_tools_pass 11 13 12 14 TESTS += $(check_PROGRAMS) 13 15 XFAIL_TESTS += test/test_tools_fail$(EXEEXT) 14 16 17 test_dim_test_SOURCES = test/dim_test.cc 15 18 test_maps_test_SOURCES = test/maps_test.cc 19 test_random_test_SOURCES = test/random_test.cc 16 20 test_test_tools_fail_SOURCES = test/test_tools_fail.cc 17 21 test_test_tools_pass_SOURCES = test/test_tools_pass.cc
Note: See TracChangeset
for help on using the changeset viewer.