COIN-OR::LEMON - Graph Library

source: lemon-0.x/lemon/Makefile.am @ 1488:92755f9a4e2a

Last change on this file since 1488:92755f9a4e2a was 1488:92755f9a4e2a, checked in by Alpar Juttner, 19 years ago

Concept checking classes must also be installed

File size: 1.4 KB
Line 
1AM_CPPFLAGS = -I$(top_srcdir)
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
11libemon_la_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS)
12libemon_la_LDFLAGS = $(GLPK_LIBS) $(CPLEX_LIBS)
13
14if HAVE_GLPK
15libemon_la_SOURCES += lp_glpk.cc
16endif
17
18if HAVE_CPLEX
19libemon_la_SOURCES += lp_cplex.cc
20endif
21
22nobase_pkginclude_HEADERS = \
23        bezier.h \
24        bfs.h \
25        dfs.h \
26        bin_heap.h \
27        config.h \
28        dijkstra.h \
29        dimacs.h \
30        error.h \
31        fib_heap.h \
32        full_graph.h \
33        graph_adaptor.h \
34        graph_utils.h \
35        graph_to_eps.h \
36        invalid.h \
37        kruskal.h \
38        list_graph.h \
39        lp_base.h \
40        lp_cplex.h \
41        lp_glpk.h \
42        lp_skeleton.h \
43        maps.h \
44        max_matching.h \
45        min_cost_flow.h \
46        suurballe.h \
47        preflow.h \
48        path.h \
49        radix_heap.h \
50        smart_graph.h \
51        time_measure.h \
52        unionfind.h \
53        xy.h \
54        concept_check.h \
55        utility.h \
56        lemon_reader.h \
57        lemon_writer.h \
58        graph_reader.h \
59        graph_writer.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        bits/item_reader.h \
72        bits/item_writer.h \
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.