COIN-OR::LEMON - Graph Library

source: lemon-0.x/src/lemon/Makefile.am @ 1378:b82995734b2d

Last change on this file since 1378:b82995734b2d was 1378:b82995734b2d, checked in by Alpar Juttner, 19 years ago

Fix Makefile.am

File size: 1.3 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
18nobase_pkginclude_HEADERS = \
19        bezier.h \
20        bfs.h \
21        dfs.h \
22        bin_heap.h \
23        dijkstra.h \
24        dimacs.h \
25        error.h \
26        fib_heap.h \
27        full_graph.h \
28        graph_wrapper.h \
29        graph_utils.h \
30        graph_to_eps.h \
31        invalid.h \
32        kruskal.h \
33        list_graph.h \
34        lp_base.h \
35        lp_glpk.h \
36        lp_skeleton.h \
37        maps.h \
38        max_matching.h \
39        min_cost_flow.h \
40        suurballe.h \
41        preflow.h \
42        path.h \
43        radix_heap.h \
44        smart_graph.h \
45        time_measure.h \
46        unionfind.h \
47        xy.h \
48        concept_check.h \
49        utility.h \
50        graph_reader.h \
51        graph_writer.h \
52        map_utils.h \
53        bits/alteration_notifier.h \
54        bits/map_iterator.h \
55        bits/array_map.h \
56        bits/default_map.h \
57        bits/extended_pair.h \
58        bits/vector_map.h \
59        bits/iterable_graph_extender.h \
60        bits/extendable_graph_extender.h \
61        bits/clearable_graph_extender.h \
62        bits/erasable_graph_extender.h \
63        bits/undir_graph_extender.h
64
65noinst_HEADERS = \
66        concept/graph.h \
67        concept/graph_component.h \
68        concept/undir_graph.h \
69        concept/sym_graph.h \
70        concept/maps.h \
71        concept/heap.h \
72        concept/path.h
Note: See TracBrowser for help on using the repository browser.