COIN-OR::LEMON - Graph Library

source: lemon-0.x/src/lemon/Makefile.am @ 1346:639dadf8c00d

Last change on this file since 1346:639dadf8c00d was 1340:80da1eadcaa7, checked in by Alpar Juttner, 19 years ago

Missing header added

File size: 2.0 KB
Line 
1AM_CPPFLAGS = -I$(top_srcdir)/src
2
3pkgconfigdir = $(libdir)/pkgconfig
4pkgconfig_DATA = lemon.pc
5
6lib_LTLIBRARIES = libemon.la
7libemon_la_SOURCES =                                                    \
8        lp_base.cc                                                      \
9        lp_glpk.cc                                                      \
10        lp_skeleton.cc
11
12pkginclude_HEADERS =                                                    \
13        bezier.h                                                        \
14        bfs.h                                                           \
15        dfs.h                                                           \
16        bin_heap.h                                                      \
17        dijkstra.h                                                      \
18        dimacs.h                                                        \
19        error.h                                                         \
20        fib_heap.h                                                      \
21        full_graph.h                                                    \
22        graph_wrapper.h                                                 \
23        graph_utils.h                                                   \
24        graph_to_eps.h                                                  \
25        invalid.h                                                       \
26        kruskal.h                                                       \
27        list_graph.h                                                    \
28        maps.h                                                          \
29        max_matching.h                                                  \
30        min_cost_flow.h                                                 \
31        suurballe.h                                                     \
32        preflow.h                                                       \
33        path.h                                                          \
34        radix_heap.h                                                    \
35        smart_graph.h                                                   \
36        time_measure.h                                                  \
37        unionfind.h                                                     \
38        xy.h                                                            \
39        concept_check.h                                                 \
40        utility.h                                                       \
41        graph_reader.h                                                  \
42        graph_writer.h                                                  \
43        map_utils.h                                                     \
44        bits/alteration_notifier.h                                      \
45        bits/map_iterator.h                                             \
46        bits/array_map.h                                                \
47        bits/default_map.h                                              \
48        bits/extended_pair.h                                            \
49        bits/vector_map.h                                               \
50        bits/iterable_graph_extender.h                                  \
51        bits/extendable_graph_extender.h                                \
52        bits/clearable_graph_extender.h                                 \
53        bits/erasable_graph_extender.h                                  \
54        bits/undir_graph_extender.h                                     
55
56noinst_HEADERS =                                                        \
57        lp_base.h                                                       \
58        lp_glpk.h                                                       \
59        lp_skeleton.h                                           \
60        concept/graph.h                                                 \
61        concept/graph_component.h                                       \
62        concept/undir_graph.h                                           \
63        concept/sym_graph.h                                             \
64        concept/maps.h                                                  \
65        concept/heap.h                                                  \
66        concept/path.h
Note: See TracBrowser for help on using the repository browser.