COIN-OR::LEMON - Graph Library

source: lemon-1.2/lemon/Makefile.am @ 231:9ce7a01a95c7

Last change on this file since 231:9ce7a01a95c7 was 220:a5d8c039f218, checked in by Balazs Dezso <deba@…>, 16 years ago

Reorganize header files (Ticket #97)

In addition on some places the DefaultMap?<G, K, V> is replaced with
ItemSetTraits?<G, K>::template Map<V>::Type, to decrease the dependencies
of different tools. It is obviously better solution.

File size: 1.5 KB
RevLine 
[1]1EXTRA_DIST += \
[146]2        lemon/lemon.pc.in \
3        lemon/CMakeLists.txt
[1]4
5pkgconfig_DATA += lemon/lemon.pc
6
7lib_LTLIBRARIES += lemon/libemon.la
8
[7]9lemon_libemon_la_SOURCES = \
[85]10        lemon/arg_parser.cc \
[10]11        lemon/base.cc \
[128]12        lemon/color.cc \
[10]13        lemon/random.cc
14
[1]15
16lemon_libemon_la_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS) $(SOPLEX_CXXFLAGS)
17lemon_libemon_la_LDFLAGS = $(GLPK_LIBS) $(CPLEX_LIBS) $(SOPLEX_LIBS)
18
[2]19lemon_HEADERS += \
[85]20        lemon/arg_parser.h \
[108]21        lemon/assert.h \
[100]22        lemon/bfs.h \
23        lemon/bin_heap.h \
[128]24        lemon/color.h \
[166]25        lemon/concept_check.h \
[119]26        lemon/counter.h \
[220]27        lemon/core.h \
[100]28        lemon/dfs.h \
29        lemon/dijkstra.h \
[8]30        lemon/dim2.h \
[66]31        lemon/error.h \
[128]32        lemon/graph_to_eps.h \
[103]33        lemon/kruskal.h \
[127]34        lemon/lgf_reader.h \
[195]35        lemon/lgf_writer.h \
[66]36        lemon/list_graph.h \
[58]37        lemon/maps.h \
[68]38        lemon/math.h \
[96]39        lemon/path.h \
[10]40        lemon/random.h \
[109]41        lemon/smart_graph.h \
[119]42        lemon/time_measure.h \
[103]43        lemon/tolerance.h \
44        lemon/unionfind.h
[1]45
[7]46bits_HEADERS += \
[57]47        lemon/bits/alteration_notifier.h \
48        lemon/bits/array_map.h \
49        lemon/bits/base_extender.h \
[128]50        lemon/bits/bezier.h \
[57]51        lemon/bits/default_map.h \
[220]52        lemon/bits/enable_if.h \
[58]53        lemon/bits/graph_extender.h \
[57]54        lemon/bits/map_extender.h \
[100]55        lemon/bits/path_dump.h \
[58]56        lemon/bits/traits.h \
[57]57        lemon/bits/vector_map.h
[1]58
[58]59concept_HEADERS += \
[57]60        lemon/concepts/digraph.h \
61        lemon/concepts/graph.h \
[195]62        lemon/concepts/graph_components.h \
[100]63        lemon/concepts/heap.h \
[58]64        lemon/concepts/maps.h \
[195]65        lemon/concepts/path.h
Note: See TracBrowser for help on using the repository browser.