lemon/Makefile.am
author Alpar Juttner <alpar@cs.elte.hu>
Tue, 20 Dec 2011 17:35:45 +0100
changeset 1102 17e36e175725
parent 728 532697c9fa53
parent 1086 08cbd48f51f0
child 1106 7c4ba7daaf5f
permissions -rw-r--r--
Merge
     1 EXTRA_DIST += \
     2 	lemon/lemon.pc.in \
     3 	lemon/lemon.pc.cmake \
     4 	lemon/CMakeLists.txt \
     5 	lemon/config.h.cmake
     6 
     7 pkgconfig_DATA += lemon/lemon.pc
     8 
     9 lib_LTLIBRARIES += lemon/libemon.la
    10 
    11 lemon_libemon_la_SOURCES = \
    12 	lemon/arg_parser.cc \
    13 	lemon/base.cc \
    14 	lemon/color.cc \
    15 	lemon/lp_base.cc \
    16 	lemon/lp_skeleton.cc \
    17 	lemon/random.cc \
    18 	lemon/bits/windows.cc
    19 
    20 nodist_lemon_HEADERS = lemon/config.h	
    21 
    22 lemon_libemon_la_CXXFLAGS = \
    23 	$(AM_CXXFLAGS) \
    24 	$(GLPK_CFLAGS) \
    25 	$(CPLEX_CFLAGS) \
    26 	$(SOPLEX_CXXFLAGS) \
    27 	$(CLP_CXXFLAGS) \
    28 	$(CBC_CXXFLAGS)
    29 
    30 lemon_libemon_la_LDFLAGS = \
    31 	$(GLPK_LIBS) \
    32 	$(CPLEX_LIBS) \
    33 	$(SOPLEX_LIBS) \
    34 	$(CLP_LIBS) \
    35 	$(CBC_LIBS)
    36 
    37 if HAVE_GLPK
    38 lemon_libemon_la_SOURCES += lemon/glpk.cc
    39 endif
    40 
    41 if HAVE_CPLEX
    42 lemon_libemon_la_SOURCES += lemon/cplex.cc
    43 endif
    44 
    45 if HAVE_SOPLEX
    46 lemon_libemon_la_SOURCES += lemon/soplex.cc
    47 endif
    48 
    49 if HAVE_CLP
    50 lemon_libemon_la_SOURCES += lemon/clp.cc
    51 endif
    52 
    53 if HAVE_CBC
    54 lemon_libemon_la_SOURCES += lemon/cbc.cc
    55 endif
    56 
    57 lemon_HEADERS += \
    58 	lemon/adaptors.h \
    59 	lemon/arg_parser.h \
    60 	lemon/assert.h \
    61 	lemon/bfs.h \
    62 	lemon/bin_heap.h \
    63 	lemon/bucket_heap.h \
    64 	lemon/cbc.h \
    65 	lemon/circulation.h \
    66 	lemon/clp.h \
    67 	lemon/color.h \
    68 	lemon/concept_check.h \
    69 	lemon/connectivity.h \
    70 	lemon/counter.h \
    71 	lemon/core.h \
    72 	lemon/cplex.h \
    73 	lemon/dfs.h \
    74 	lemon/dijkstra.h \
    75 	lemon/dim2.h \
    76 	lemon/dimacs.h \
    77 	lemon/edge_set.h \
    78 	lemon/elevator.h \
    79 	lemon/error.h \
    80 	lemon/euler.h \
    81 	lemon/fib_heap.h \
    82 	lemon/full_graph.h \
    83 	lemon/glpk.h \
    84 	lemon/gomory_hu.h \
    85 	lemon/graph_to_eps.h \
    86 	lemon/grid_graph.h \
    87 	lemon/hypercube_graph.h \
    88 	lemon/kruskal.h \
    89 	lemon/hao_orlin.h \
    90 	lemon/lgf_reader.h \
    91 	lemon/lgf_writer.h \
    92 	lemon/list_graph.h \
    93 	lemon/lp.h \
    94 	lemon/lp_base.h \
    95 	lemon/lp_skeleton.h \
    96 	lemon/list_graph.h \
    97 	lemon/maps.h \
    98 	lemon/matching.h \
    99 	lemon/math.h \
   100 	lemon/min_cost_arborescence.h \
   101 	lemon/nauty_reader.h \
   102 	lemon/network_simplex.h \
   103 	lemon/path.h \
   104 	lemon/preflow.h \
   105 	lemon/radix_heap.h \
   106 	lemon/radix_sort.h \
   107 	lemon/random.h \
   108 	lemon/smart_graph.h \
   109 	lemon/soplex.h \
   110 	lemon/suurballe.h \
   111 	lemon/time_measure.h \
   112 	lemon/tolerance.h \
   113 	lemon/unionfind.h \
   114 	lemon/bits/windows.h
   115 
   116 bits_HEADERS += \
   117 	lemon/bits/alteration_notifier.h \
   118 	lemon/bits/array_map.h \
   119 	lemon/bits/bezier.h \
   120 	lemon/bits/default_map.h \
   121 	lemon/bits/edge_set_extender.h \
   122 	lemon/bits/enable_if.h \
   123 	lemon/bits/graph_adaptor_extender.h \
   124 	lemon/bits/graph_extender.h \
   125 	lemon/bits/map_extender.h \
   126 	lemon/bits/path_dump.h \
   127 	lemon/bits/solver_bits.h \
   128 	lemon/bits/traits.h \
   129 	lemon/bits/variant.h \
   130 	lemon/bits/vector_map.h
   131 
   132 concept_HEADERS += \
   133 	lemon/concepts/digraph.h \
   134 	lemon/concepts/graph.h \
   135 	lemon/concepts/graph_components.h \
   136 	lemon/concepts/heap.h \
   137 	lemon/concepts/maps.h \
   138 	lemon/concepts/path.h