COIN-OR::LEMON - Graph Library

source: lemon-main/lemon/Makefile.am @ 100:4f754b4cf82b

Last change on this file since 100:4f754b4cf82b was 100:4f754b4cf82b, checked in by Alpar Juttner <alpar@…>, 16 years ago

Bfs/Dfs/Dijkstra? and their deps ported from svn trung -r 3441.

File size: 1.2 KB
RevLine 
[1]1EXTRA_DIST += \
2        lemon/Makefile \
3        lemon/lemon.pc.in
4
5pkgconfig_DATA += lemon/lemon.pc
6
7lib_LTLIBRARIES += lemon/libemon.la
8
[7]9lemon_libemon_la_SOURCES = \
[10]10        lemon/base.cc \
11        lemon/random.cc
12
[1]13
14lemon_libemon_la_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS) $(SOPLEX_CXXFLAGS)
15lemon_libemon_la_LDFLAGS = $(GLPK_LIBS) $(CPLEX_LIBS) $(SOPLEX_LIBS)
16
[2]17lemon_HEADERS += \
[100]18        lemon/bfs.h \
19        lemon/bin_heap.h \
20        lemon/dfs.h \
21        lemon/dijkstra.h \
[8]22        lemon/dim2.h \
[66]23        lemon/error.h \
[100]24        lemon/graph_utils.h \
[66]25        lemon/list_graph.h \
[58]26        lemon/maps.h \
[96]27        lemon/path.h \
[10]28        lemon/random.h \
[7]29        lemon/tolerance.h
[1]30
[7]31bits_HEADERS += \
[57]32        lemon/bits/alteration_notifier.h \
33        lemon/bits/array_map.h \
34        lemon/bits/base_extender.h \
35        lemon/bits/default_map.h \
[58]36        lemon/bits/graph_extender.h \
[7]37        lemon/bits/invalid.h \
[57]38        lemon/bits/map_extender.h \
[100]39        lemon/bits/path_dump.h \
[58]40        lemon/bits/traits.h \
[57]41        lemon/bits/utility.h \
42        lemon/bits/vector_map.h
[1]43
[25]44concept_HEADERS += \
[57]45        lemon/concept_check.h \
46        lemon/concepts/digraph.h \
47        lemon/concepts/graph.h \
[100]48        lemon/concepts/heap.h \
[58]49        lemon/concepts/maps.h \
[96]50        lemon/concepts/path.h \
[57]51        lemon/concepts/graph_components.h
Note: See TracBrowser for help on using the repository browser.