lemon/Makefile.am
author deba
Wed, 25 Jan 2006 14:40:26 +0000
changeset 1903 f3d24016dad5
parent 1864 1788205e36af
child 1909 2d806130e700
permissions -rw-r--r--
Bug fix
     1 AM_CPPFLAGS = -I$(top_srcdir)
     2 
     3 pkgconfigdir = $(libdir)/pkgconfig
     4 pkgconfig_DATA = lemon.pc
     5 
     6 lib_LTLIBRARIES = libemon.la
     7 
     8 libemon_la_SOURCES = \
     9 	lp_base.cc \
    10 	lp_skeleton.cc \
    11 	base.cc 
    12 libemon_la_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS)
    13 libemon_la_LDFLAGS = $(GLPK_LIBS) $(CPLEX_LIBS)
    14 
    15 if HAVE_GLPK
    16 libemon_la_SOURCES += lp_glpk.cc
    17 endif
    18 
    19 if HAVE_CPLEX
    20 libemon_la_SOURCES += lp_cplex.cc
    21 endif
    22 
    23 nobase_pkginclude_HEADERS = \
    24 	bellman_ford.h \
    25 	bezier.h \
    26 	bfs.h \
    27 	dfs.h \
    28 	bin_heap.h \
    29 	config.h \
    30 	counter.h \
    31 	dijkstra.h \
    32 	dimacs.h \
    33 	edge_set.h \
    34 	error.h \
    35 	fib_heap.h \
    36 	floyd_warshall.h \
    37 	full_graph.h \
    38 	grid_graph.h \
    39 	graph_adaptor.h \
    40 	graph_utils.h \
    41 	graph_to_eps.h \
    42 	hypercube_graph.h \
    43 	invalid.h \
    44 	iterable_maps.h \
    45 	johnson.h \
    46 	kruskal.h \
    47 	linear_heap.h \
    48 	list_graph.h \
    49 	lp.h \
    50 	lp_base.h \
    51 	lp_cplex.h \
    52 	lp_glpk.h \
    53 	lp_skeleton.h \
    54 	maps.h \
    55 	matrix_maps.h \
    56 	map_iterator.h \
    57 	max_matching.h \
    58 	min_cost_flow.h \
    59 	suurballe.h \
    60 	preflow.h \
    61 	path.h \
    62 	radix_heap.h \
    63 	radix_sort.h \
    64 	smart_graph.h \
    65 	sub_graph.h \
    66 	time_measure.h \
    67 	topology.h \
    68 	traits.h \
    69 	unionfind.h \
    70 	xy.h \
    71 	concept_check.h \
    72 	utility.h \
    73 	lemon_reader.h \
    74 	lemon_writer.h \
    75 	graph_reader.h \
    76 	graph_writer.h \
    77 	tolerance.h \
    78 	bits/alteration_notifier.h \
    79 	bits/array_map.h \
    80 	bits/default_map.h \
    81 	bits/vector_map.h \
    82 	bits/iterable_graph_extender.h \
    83 	bits/extendable_graph_extender.h \
    84 	bits/clearable_graph_extender.h \
    85 	bits/erasable_graph_extender.h \
    86 	bits/graph_extender.h \
    87 	bits/map_extender.h \
    88 	bits/static_map.h \
    89 	bits/item_reader.h \
    90 	bits/item_writer.h \
    91 	concept/graph.h \
    92 	concept/graph_component.h \
    93 	concept/undir_graph.h \
    94 	concept/matrix_maps.h \
    95 	concept/maps.h \
    96 	concept/heap.h \
    97 	concept/path.h