lemon/Makefile.am
author deba
Mon, 12 Sep 2005 11:24:54 +0000
changeset 1681 84e43c7ca1e3
parent 1629 a245eff568a6
child 1693 269f0cbfbcc8
permissions -rw-r--r--
SubGraphAdaptors with edge checking functionality.

Improved grid_graph_demo
     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 libemon_la_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS)
    12 libemon_la_LDFLAGS = $(GLPK_LIBS) $(CPLEX_LIBS)
    13 
    14 if HAVE_GLPK
    15 libemon_la_SOURCES += lp_glpk.cc
    16 endif
    17 
    18 if HAVE_CPLEX
    19 libemon_la_SOURCES += lp_cplex.cc
    20 endif
    21 
    22 nobase_pkginclude_HEADERS = \
    23 	bezier.h \
    24 	bfs.h \
    25 	dfs.h \
    26 	bin_heap.h \
    27 	config.h \
    28 	dijkstra.h \
    29 	dimacs.h \
    30 	error.h \
    31 	fib_heap.h \
    32 	full_graph.h \
    33 	grid_graph.h \
    34 	graph_adaptor.h \
    35 	graph_utils.h \
    36 	graph_to_eps.h \
    37 	invalid.h \
    38 	iterable_maps.h \
    39 	kruskal.h \
    40 	list_graph.h \
    41 	lp.h \
    42 	lp_base.h \
    43 	lp_cplex.h \
    44 	lp_glpk.h \
    45 	lp_skeleton.h \
    46 	maps.h \
    47 	max_matching.h \
    48 	min_cost_flow.h \
    49 	suurballe.h \
    50 	preflow.h \
    51 	path.h \
    52 	radix_heap.h \
    53 	smart_graph.h \
    54 	time_measure.h \
    55 	unionfind.h \
    56 	xy.h \
    57 	concept_check.h \
    58 	utility.h \
    59 	lemon_reader.h \
    60 	lemon_writer.h \
    61 	graph_reader.h \
    62 	graph_writer.h \
    63 	bits/alteration_notifier.h \
    64 	bits/map_iterator.h \
    65 	bits/array_map.h \
    66 	bits/default_map.h \
    67 	bits/extended_pair.h \
    68 	bits/vector_map.h \
    69 	bits/iterable_graph_extender.h \
    70 	bits/extendable_graph_extender.h \
    71 	bits/clearable_graph_extender.h \
    72 	bits/erasable_graph_extender.h \
    73 	bits/undir_graph_extender.h \
    74 	bits/item_reader.h \
    75 	bits/item_writer.h \
    76 	concept/graph.h \
    77 	concept/graph_component.h \
    78 	concept/undir_graph.h \
    79 	concept/maps.h \
    80 	concept/heap.h \
    81 	concept/path.h