lemon/Makefile.am
author Alpar Juttner <alpar@cs.elte.hu>
Mon, 12 Jan 2009 12:26:01 +0000
changeset 484 08d495d48089
parent 482 ed54c0d13df0
child 492 04c0631fd332
permissions -rw-r--r--
Remove lp_ prefix from the solver's header name
     1 EXTRA_DIST += \
     2 	lemon/lemon.pc.in \
     3 	lemon/CMakeLists.txt
     4 
     5 pkgconfig_DATA += lemon/lemon.pc
     6 
     7 lib_LTLIBRARIES += lemon/libemon.la
     8 
     9 lemon_libemon_la_SOURCES = \
    10 	lemon/arg_parser.cc \
    11 	lemon/base.cc \
    12 	lemon/color.cc \
    13 	lemon/lp_base.cc \
    14 	lemon/lp_skeleton.cc \
    15 	lemon/random.cc
    16 
    17 
    18 lemon_libemon_la_CXXFLAGS = \
    19 	$(GLPK_CFLAGS) \
    20 	$(CPLEX_CFLAGS) \
    21 	$(SOPLEX_CXXFLAGS) \
    22 	$(CLP_CXXFLAGS)
    23 
    24 lemon_libemon_la_LDFLAGS = \
    25 	$(GLPK_LIBS) \
    26 	$(CPLEX_LIBS) \
    27 	$(SOPLEX_LIBS) \
    28 	$(CLP_LIBS)
    29 
    30 if HAVE_GLPK
    31 lemon_libemon_la_SOURCES += lemon/glpk.cc
    32 endif
    33 
    34 if HAVE_CPLEX
    35 lemon_libemon_la_SOURCES += lemon/cplex.cc
    36 endif
    37 
    38 if HAVE_SOPLEX
    39 lemon_libemon_la_SOURCES += lemon/soplex.cc
    40 endif
    41 
    42 if HAVE_CLP
    43 lemon_libemon_la_SOURCES += lemon/clp.cc
    44 endif
    45 
    46 lemon_HEADERS += \
    47 	lemon/adaptors.h \
    48 	lemon/arg_parser.h \
    49 	lemon/assert.h \
    50 	lemon/bfs.h \
    51 	lemon/bin_heap.h \
    52 	lemon/circulation.h \
    53 	lemon/clp.h \
    54 	lemon/color.h \
    55 	lemon/concept_check.h \
    56 	lemon/counter.h \
    57 	lemon/core.h \
    58 	lemon/cplex.h \
    59 	lemon/dfs.h \
    60 	lemon/dijkstra.h \
    61 	lemon/dim2.h \
    62 	lemon/dimacs.h \
    63 	lemon/elevator.h \
    64 	lemon/error.h \
    65 	lemon/full_graph.h \
    66 	lemon/glpk.h \
    67 	lemon/graph_to_eps.h \
    68 	lemon/grid_graph.h \
    69 	lemon/hypercube_graph.h \
    70 	lemon/kruskal.h \
    71 	lemon/hao_orlin.h \
    72 	lemon/lgf_reader.h \
    73 	lemon/lgf_writer.h \
    74 	lemon/list_graph.h \
    75 	lemon/lp.h \
    76 	lemon/lp_base.h \
    77 	lemon/lp_skeleton.h \
    78 	lemon/list_graph.h \
    79 	lemon/maps.h \
    80 	lemon/math.h \
    81 	lemon/max_matching.h \
    82 	lemon/nauty_reader.h \
    83 	lemon/path.h \
    84 	lemon/preflow.h \
    85 	lemon/radix_sort.h \
    86 	lemon/random.h \
    87 	lemon/smart_graph.h \
    88 	lemon/soplex.h \
    89 	lemon/suurballe.h \
    90 	lemon/time_measure.h \
    91 	lemon/tolerance.h \
    92 	lemon/unionfind.h
    93 
    94 bits_HEADERS += \
    95 	lemon/bits/alteration_notifier.h \
    96 	lemon/bits/array_map.h \
    97 	lemon/bits/base_extender.h \
    98 	lemon/bits/bezier.h \
    99 	lemon/bits/default_map.h \
   100 	lemon/bits/enable_if.h \
   101 	lemon/bits/graph_adaptor_extender.h \
   102 	lemon/bits/graph_extender.h \
   103 	lemon/bits/map_extender.h \
   104 	lemon/bits/path_dump.h \
   105 	lemon/bits/solver_bits.h \
   106 	lemon/bits/traits.h \
   107 	lemon/bits/variant.h \
   108 	lemon/bits/vector_map.h
   109 
   110 concept_HEADERS += \
   111 	lemon/concepts/digraph.h \
   112 	lemon/concepts/graph.h \
   113 	lemon/concepts/graph_components.h \
   114 	lemon/concepts/heap.h \
   115 	lemon/concepts/maps.h \
   116 	lemon/concepts/path.h