COIN-OR::LEMON - Graph Library

source: lemon/lemon/Makefile.am @ 414:5a7dbeaed70e

Last change on this file since 414:5a7dbeaed70e was 414:5a7dbeaed70e, checked in by Alpar Juttner <alpar@…>, 15 years ago

Port Circulation from svn -r3516 (#175)
Namely,

  • port the files
  • apply the migrate script
  • apply the unify script
  • fix the compilation
  • strip the demo input file
  • break long lines
File size: 1.7 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
[375]15#lemon_libemon_la_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS) $(SOPLEX_CXXFLAGS) $(AM_CXXFLAGS)
[259]16#lemon_libemon_la_LDFLAGS = $(GLPK_LIBS) $(CPLEX_LIBS) $(SOPLEX_LIBS)
[1]17
[2]18lemon_HEADERS += \
[85]19        lemon/arg_parser.h \
[108]20        lemon/assert.h \
[100]21        lemon/bfs.h \
22        lemon/bin_heap.h \
[414]23        lemon/circulation.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 \
[394]31        lemon/elevator.h \
[66]32        lemon/error.h \
[365]33        lemon/full_graph.h \
[128]34        lemon/graph_to_eps.h \
[346]35        lemon/grid_graph.h \
[376]36        lemon/hypercube_graph.h \
[103]37        lemon/kruskal.h \
[127]38        lemon/lgf_reader.h \
[195]39        lemon/lgf_writer.h \
[66]40        lemon/list_graph.h \
[58]41        lemon/maps.h \
[68]42        lemon/math.h \
[338]43        lemon/max_matching.h \
[360]44        lemon/nauty_reader.h \
[96]45        lemon/path.h \
[10]46        lemon/random.h \
[109]47        lemon/smart_graph.h \
[357]48        lemon/suurballe.h \
[119]49        lemon/time_measure.h \
[103]50        lemon/tolerance.h \
51        lemon/unionfind.h
[1]52
[7]53bits_HEADERS += \
[57]54        lemon/bits/alteration_notifier.h \
55        lemon/bits/array_map.h \
56        lemon/bits/base_extender.h \
[128]57        lemon/bits/bezier.h \
[57]58        lemon/bits/default_map.h \
[220]59        lemon/bits/enable_if.h \
[58]60        lemon/bits/graph_extender.h \
[57]61        lemon/bits/map_extender.h \
[100]62        lemon/bits/path_dump.h \
[58]63        lemon/bits/traits.h \
[57]64        lemon/bits/vector_map.h
[1]65
[58]66concept_HEADERS += \
[57]67        lemon/concepts/digraph.h \
68        lemon/concepts/graph.h \
[195]69        lemon/concepts/graph_components.h \
[100]70        lemon/concepts/heap.h \
[58]71        lemon/concepts/maps.h \
[195]72        lemon/concepts/path.h
Note: See TracBrowser for help on using the repository browser.