COIN-OR::LEMON - Graph Library

source: lemon-0.x/src/lemon/Makefile.am @ 1306:4ea2147274db

Last change on this file since 1306:4ea2147274db was 1306:4ea2147274db, checked in by Akos Ladanyi, 19 years ago

make distcheck fixes. Anyway it still doesn't work.

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_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        extended_pair.h                                                 \
23        fib_heap.h                                                      \
24        full_graph.h                                                    \
25        graph_wrapper.h                                                 \
26        graph_utils.h                                                   \
27        graph_to_eps.h                                                  \
28        invalid.h                                                       \
29        kruskal.h                                                       \
30        list_graph.h                                                    \
31        alteration_notifier.h                                           \
32        map_iterator.h                                                  \
33        maps.h                                                          \
34        max_matching.h                                                  \
35        min_cost_flow.h                                                 \
36        suurballe.h                                                     \
37        preflow.h                                                       \
38        path.h                                                          \
39        radix_heap.h                                                    \
40        smart_graph.h                                                   \
41        time_measure.h                                                  \
42        unionfind.h                                                     \
43        vector_map.h                                                    \
44        xy.h                                                            \
45        concept_check.h                                                 \
46        utility.h                                                       \
47        iterable_graph_extender.h                                       \
48        extendable_graph_extender.h                                     \
49        clearable_graph_extender.h                                      \
50        erasable_graph_extender.h                                       \
51        undir_graph_extender.h                                          \
52        graph_reader.h                                                  \
53        graph_writer.h                                                  \
54        map_utils.h
55
56noinst_HEADERS =                                                        \
57        lp_base.h                                                       \
58        lp_glpk.h                                                       \
59        lp_solver_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/path.h
Note: See TracBrowser for help on using the repository browser.