COIN-OR::LEMON - Graph Library

source: lemon-0.x/src/lemon/Makefile.am @ 1305:c3dc75d4af24

Last change on this file since 1305:c3dc75d4af24 was 1305:c3dc75d4af24, checked in by Akos Ladanyi, 19 years ago
  • moved lp_base.h, lp_base.cc, lp_glpk.h, lp_glpk.cc, lp_solver_skeleton.h and lp_solver_skeleton.cc to src/lemon
  • modified the includes
File size: 1.9 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_solver_skeleton.cc
11
12pkginclude_HEADERS =                                                    \
13        array_map.h                                                     \
14        bezier.h                                                        \
15        bfs.h                                                           \
16        dfs.h                                                           \
17        bin_heap.h                                                      \
18        default_map.h                                                   \
19        dijkstra.h                                                      \
20        dimacs.h                                                        \
21        error.h                                                         \
22        fib_heap.h                                                      \
23        full_graph.h                                                    \
24        graph_wrapper.h                                                 \
25        graph_utils.h                                                   \
26        graph_to_eps.h                                                  \
27        invalid.h                                                       \
28        kruskal.h                                                       \
29        list_graph.h                                                    \
30        alteration_notifier.h                                           \
31        maps.h                                                          \
32        max_matching.h                                                  \
33        min_cost_flow.h                                                 \
34        suurballe.h                                                     \
35        preflow.h                                                       \
36        path.h                                                          \
37        radix_heap.h                                                    \
38        smart_graph.h                                                   \
39        time_measure.h                                                  \
40        unionfind.h                                                     \
41        vector_map.h                                                    \
42        xy.h                                                            \
43        concept_check.h                                                 \
44        utility.h                                                       \
45        iterable_graph_extender.h                                       \
46        extendable_graph_extender.h                                     \
47        clearable_graph_extender.h                                      \
48        erasable_graph_extender.h                                       \
49        undir_graph_extender.h                                          \
50        graph_reader.h                                                  \
51        graph_writer.h                                                  \
52        map_utils.h
53
54noinst_HEADERS =                                                        \
55        concept/graph.h                                                 \
56        concept/graph_component.h                                       \
57        concept/undir_graph.h                                           \
58        concept/sym_graph.h                                             \
59        concept/maps.h                                                  \
60        concept/path.h
Note: See TracBrowser for help on using the repository browser.