lemon/Makefile.am
author klao
Thu, 02 Feb 2006 17:09:09 +0000
changeset 1945 e5c0c5cc477f
parent 1912 d9205a711324
child 1967 5d81ba873b90
permissions -rw-r--r--
NEWS: major changes since 0.4 added
     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 	dag_shortest_path.h \
    34 	edge_set.h \
    35 	error.h \
    36 	fib_heap.h \
    37 	floyd_warshall.h \
    38 	fredman_tarjan.h \
    39 	full_graph.h \
    40 	grid_graph.h \
    41 	graph_adaptor.h \
    42 	graph_utils.h \
    43 	graph_to_eps.h \
    44 	hypercube_graph.h \
    45 	invalid.h \
    46 	iterable_maps.h \
    47 	johnson.h \
    48 	kruskal.h \
    49 	linear_heap.h \
    50 	list_graph.h \
    51 	lp.h \
    52 	lp_base.h \
    53 	lp_cplex.h \
    54 	lp_glpk.h \
    55 	lp_skeleton.h \
    56 	maps.h \
    57 	matrix_maps.h \
    58 	map_iterator.h \
    59 	max_matching.h \
    60 	min_cost_flow.h \
    61 	suurballe.h \
    62 	preflow.h \
    63 	path.h \
    64 	prim.h \
    65 	radix_heap.h \
    66 	radix_sort.h \
    67 	simann.h \
    68 	smart_graph.h \
    69 	sub_graph.h \
    70 	time_measure.h \
    71 	topology.h \
    72 	traits.h \
    73 	unionfind.h \
    74 	xy.h \
    75 	concept_check.h \
    76 	utility.h \
    77 	lemon_reader.h \
    78 	lemon_writer.h \
    79 	graph_reader.h \
    80 	graph_writer.h \
    81 	tolerance.h \
    82 	bits/alteration_notifier.h \
    83 	bits/array_map.h \
    84 	bits/default_map.h \
    85 	bits/vector_map.h \
    86 	bits/iterable_graph_extender.h \
    87 	bits/extendable_graph_extender.h \
    88 	bits/clearable_graph_extender.h \
    89 	bits/erasable_graph_extender.h \
    90 	bits/graph_extender.h \
    91 	bits/map_extender.h \
    92 	bits/static_map.h \
    93 	bits/item_reader.h \
    94 	bits/item_writer.h \
    95 	concept/bpugraph.h \
    96 	concept/graph.h \
    97 	concept/graph_component.h \
    98 	concept/ugraph.h \
    99 	concept/matrix_maps.h \
   100 	concept/maps.h \
   101 	concept/heap.h \
   102 	concept/path.h