lemon/Makefile.am
author deba
Thu, 01 Dec 2005 15:08:46 +0000
changeset 1842 8abf74160dc4
parent 1835 eb6c34c76501
child 1847 7cbc12e42482
permissions -rw-r--r--
NewEdgeSetAdaptor -> ListEdgeSet
and moved to edge_set.h
ladanyi@1435
     1
AM_CPPFLAGS = -I$(top_srcdir)
ladanyi@1304
     2
ladanyi@1304
     3
pkgconfigdir = $(libdir)/pkgconfig
ladanyi@1304
     4
pkgconfig_DATA = lemon.pc
ladanyi@1304
     5
ladanyi@1304
     6
lib_LTLIBRARIES = libemon.la
ladanyi@1349
     7
ladanyi@1349
     8
libemon_la_SOURCES = \
ladanyi@1349
     9
	lp_base.cc \
alpar@1835
    10
	lp_skeleton.cc \
alpar@1835
    11
	base.cc 
ladanyi@1386
    12
libemon_la_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS)
ladanyi@1386
    13
libemon_la_LDFLAGS = $(GLPK_LIBS) $(CPLEX_LIBS)
ladanyi@1304
    14
ladanyi@1349
    15
if HAVE_GLPK
ladanyi@1349
    16
libemon_la_SOURCES += lp_glpk.cc
ladanyi@1349
    17
endif
ladanyi@596
    18
alpar@1381
    19
if HAVE_CPLEX
alpar@1381
    20
libemon_la_SOURCES += lp_cplex.cc
alpar@1381
    21
endif
alpar@1381
    22
alpar@1378
    23
nobase_pkginclude_HEADERS = \
deba@1700
    24
	belmann_ford.h \
ladanyi@1349
    25
	bezier.h \
ladanyi@1349
    26
	bfs.h \
ladanyi@1349
    27
	dfs.h \
ladanyi@1349
    28
	bin_heap.h \
ladanyi@1433
    29
	config.h \
ladanyi@1349
    30
	dijkstra.h \
ladanyi@1349
    31
	dimacs.h \
deba@1842
    32
	edge_set.h \
ladanyi@1349
    33
	error.h \
ladanyi@1349
    34
	fib_heap.h \
deba@1700
    35
	floyd_warshall.h \
ladanyi@1349
    36
	full_graph.h \
deba@1625
    37
	grid_graph.h \
alpar@1401
    38
	graph_adaptor.h \
ladanyi@1349
    39
	graph_utils.h \
ladanyi@1349
    40
	graph_to_eps.h \
deba@1693
    41
	hypercube_graph.h \
ladanyi@1349
    42
	invalid.h \
alpar@1677
    43
	iterable_maps.h \
deba@1700
    44
	johnson.h \
ladanyi@1349
    45
	kruskal.h \
deba@1724
    46
	linear_heap.h \
ladanyi@1349
    47
	list_graph.h \
alpar@1629
    48
	lp.h \
alpar@1378
    49
	lp_base.h \
alpar@1381
    50
	lp_cplex.h \
alpar@1378
    51
	lp_glpk.h \
alpar@1378
    52
	lp_skeleton.h \
ladanyi@1349
    53
	maps.h \
deba@1724
    54
	matrix_maps.h \
deba@1824
    55
	map_iterator.h \
ladanyi@1349
    56
	max_matching.h \
ladanyi@1349
    57
	min_cost_flow.h \
ladanyi@1349
    58
	suurballe.h \
ladanyi@1349
    59
	preflow.h \
ladanyi@1349
    60
	path.h \
ladanyi@1349
    61
	radix_heap.h \
deba@1833
    62
	radix_sort.h \
ladanyi@1349
    63
	smart_graph.h \
ladanyi@1349
    64
	time_measure.h \
deba@1700
    65
	topology.h \
deba@1724
    66
	traits.h \
ladanyi@1349
    67
	unionfind.h \
ladanyi@1349
    68
	xy.h \
ladanyi@1349
    69
	concept_check.h \
ladanyi@1349
    70
	utility.h \
deba@1408
    71
	lemon_reader.h \
deba@1409
    72
	lemon_writer.h \
ladanyi@1349
    73
	graph_reader.h \
ladanyi@1349
    74
	graph_writer.h \
alpar@1835
    75
	tolerance.h \
ladanyi@1349
    76
	bits/alteration_notifier.h \
ladanyi@1349
    77
	bits/array_map.h \
ladanyi@1349
    78
	bits/default_map.h \
ladanyi@1349
    79
	bits/vector_map.h \
ladanyi@1349
    80
	bits/iterable_graph_extender.h \
ladanyi@1349
    81
	bits/extendable_graph_extender.h \
ladanyi@1349
    82
	bits/clearable_graph_extender.h \
ladanyi@1349
    83
	bits/erasable_graph_extender.h \
klao@1795
    84
	bits/graph_extender.h \
alpar@1815
    85
	bits/map_extender.h \
deba@1707
    86
	bits/static_map.h \
deba@1409
    87
	bits/item_reader.h \
alpar@1488
    88
	bits/item_writer.h \
ladanyi@1349
    89
	concept/graph.h \
ladanyi@1349
    90
	concept/graph_component.h \
ladanyi@1349
    91
	concept/undir_graph.h \
deba@1724
    92
	concept/matrix_maps.h \
ladanyi@1349
    93
	concept/maps.h \
ladanyi@1349
    94
	concept/heap.h \
klao@959
    95
	concept/path.h