lemon/Makefile.am
changeset 1435 8e85e6bbefdf
parent 1433 e0ec5ce0771e
child 1488 92755f9a4e2a
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/lemon/Makefile.am	Mon May 23 04:48:14 2005 +0000
     1.3 @@ -0,0 +1,81 @@
     1.4 +AM_CPPFLAGS = -I$(top_srcdir)
     1.5 +
     1.6 +pkgconfigdir = $(libdir)/pkgconfig
     1.7 +pkgconfig_DATA = lemon.pc
     1.8 +
     1.9 +lib_LTLIBRARIES = libemon.la
    1.10 +
    1.11 +libemon_la_SOURCES = \
    1.12 +	lp_base.cc \
    1.13 +	lp_skeleton.cc
    1.14 +libemon_la_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS)
    1.15 +libemon_la_LDFLAGS = $(GLPK_LIBS) $(CPLEX_LIBS)
    1.16 +
    1.17 +if HAVE_GLPK
    1.18 +libemon_la_SOURCES += lp_glpk.cc
    1.19 +endif
    1.20 +
    1.21 +if HAVE_CPLEX
    1.22 +libemon_la_SOURCES += lp_cplex.cc
    1.23 +endif
    1.24 +
    1.25 +nobase_pkginclude_HEADERS = \
    1.26 +	bezier.h \
    1.27 +	bfs.h \
    1.28 +	dfs.h \
    1.29 +	bin_heap.h \
    1.30 +	config.h \
    1.31 +	dijkstra.h \
    1.32 +	dimacs.h \
    1.33 +	error.h \
    1.34 +	fib_heap.h \
    1.35 +	full_graph.h \
    1.36 +	graph_adaptor.h \
    1.37 +	graph_utils.h \
    1.38 +	graph_to_eps.h \
    1.39 +	invalid.h \
    1.40 +	kruskal.h \
    1.41 +	list_graph.h \
    1.42 +	lp_base.h \
    1.43 +	lp_cplex.h \
    1.44 +	lp_glpk.h \
    1.45 +	lp_skeleton.h \
    1.46 +	maps.h \
    1.47 +	max_matching.h \
    1.48 +	min_cost_flow.h \
    1.49 +	suurballe.h \
    1.50 +	preflow.h \
    1.51 +	path.h \
    1.52 +	radix_heap.h \
    1.53 +	smart_graph.h \
    1.54 +	time_measure.h \
    1.55 +	unionfind.h \
    1.56 +	xy.h \
    1.57 +	concept_check.h \
    1.58 +	utility.h \
    1.59 +	lemon_reader.h \
    1.60 +	lemon_writer.h \
    1.61 +	graph_reader.h \
    1.62 +	graph_writer.h \
    1.63 +	bits/alteration_notifier.h \
    1.64 +	bits/map_iterator.h \
    1.65 +	bits/array_map.h \
    1.66 +	bits/default_map.h \
    1.67 +	bits/extended_pair.h \
    1.68 +	bits/vector_map.h \
    1.69 +	bits/iterable_graph_extender.h \
    1.70 +	bits/extendable_graph_extender.h \
    1.71 +	bits/clearable_graph_extender.h \
    1.72 +	bits/erasable_graph_extender.h \
    1.73 +	bits/undir_graph_extender.h \
    1.74 +	bits/item_reader.h \
    1.75 +	bits/item_writer.h
    1.76 +
    1.77 +noinst_HEADERS = \
    1.78 +	concept/graph.h \
    1.79 +	concept/graph_component.h \
    1.80 +	concept/undir_graph.h \
    1.81 +	concept/sym_graph.h \
    1.82 +	concept/maps.h \
    1.83 +	concept/heap.h \
    1.84 +	concept/path.h