COIN-OR::LEMON - Graph Library

source: lemon-0.x/src/lemon/Makefile.am @ 1381:998e8def9676

Last change on this file since 1381:998e8def9676 was 1381:998e8def9676, checked in by Alpar Juttner, 19 years ago
  • lp_cplex.h, lp_cplex.cc added
  • lp_demo.cc and lp_maxflow_demo.cc uses GLPK is it is found CPLEX otherwise
File size: 1.4 KB
Line 
1AM_CPPFLAGS = -I$(top_srcdir)/src
2
3pkgconfigdir = $(libdir)/pkgconfig
4pkgconfig_DATA = lemon.pc
5
6lib_LTLIBRARIES = libemon.la
7
8libemon_la_SOURCES = \
9        lp_base.cc \
10        lp_skeleton.cc
11
12if HAVE_GLPK
13libemon_la_SOURCES += lp_glpk.cc
14libemon_la_CXXFLAGS = $(GLPK_CFLAGS)
15libemon_la_LDFLAGS = $(GLPK_LIBS)
16endif
17
18if HAVE_CPLEX
19libemon_la_SOURCES += lp_cplex.cc
20libemon_la_CXXFLAGS = $(CPLEX_CFLAGS)
21libemon_la_LDFLAGS = $(CPLEX_LIBS)
22endif
23
24nobase_pkginclude_HEADERS = \
25        bezier.h \
26        bfs.h \
27        dfs.h \
28        bin_heap.h \
29        dijkstra.h \
30        dimacs.h \
31        error.h \
32        fib_heap.h \
33        full_graph.h \
34        graph_wrapper.h \
35        graph_utils.h \
36        graph_to_eps.h \
37        invalid.h \
38        kruskal.h \
39        list_graph.h \
40        lp_base.h \
41        lp_cplex.h \
42        lp_glpk.h \
43        lp_skeleton.h \
44        maps.h \
45        max_matching.h \
46        min_cost_flow.h \
47        suurballe.h \
48        preflow.h \
49        path.h \
50        radix_heap.h \
51        smart_graph.h \
52        time_measure.h \
53        unionfind.h \
54        xy.h \
55        concept_check.h \
56        utility.h \
57        graph_reader.h \
58        graph_writer.h \
59        map_utils.h \
60        bits/alteration_notifier.h \
61        bits/map_iterator.h \
62        bits/array_map.h \
63        bits/default_map.h \
64        bits/extended_pair.h \
65        bits/vector_map.h \
66        bits/iterable_graph_extender.h \
67        bits/extendable_graph_extender.h \
68        bits/clearable_graph_extender.h \
69        bits/erasable_graph_extender.h \
70        bits/undir_graph_extender.h
71
72noinst_HEADERS = \
73        concept/graph.h \
74        concept/graph_component.h \
75        concept/undir_graph.h \
76        concept/sym_graph.h \
77        concept/maps.h \
78        concept/heap.h \
79        concept/path.h
Note: See TracBrowser for help on using the repository browser.