lemon/Makefile.am
author deba
Mon, 03 Oct 2005 10:21:27 +0000
changeset 1700 30fe294ac801
parent 1693 269f0cbfbcc8
child 1707 39496e5482af
permissions -rw-r--r--
Extend Makefile
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@1313
    10
	lp_skeleton.cc
ladanyi@1386
    11
libemon_la_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS)
ladanyi@1386
    12
libemon_la_LDFLAGS = $(GLPK_LIBS) $(CPLEX_LIBS)
ladanyi@1304
    13
ladanyi@1349
    14
if HAVE_GLPK
ladanyi@1349
    15
libemon_la_SOURCES += lp_glpk.cc
ladanyi@1349
    16
endif
ladanyi@596
    17
alpar@1381
    18
if HAVE_CPLEX
alpar@1381
    19
libemon_la_SOURCES += lp_cplex.cc
alpar@1381
    20
endif
alpar@1381
    21
alpar@1378
    22
nobase_pkginclude_HEADERS = \
deba@1700
    23
	belmann_ford.h \
ladanyi@1349
    24
	bezier.h \
ladanyi@1349
    25
	bfs.h \
ladanyi@1349
    26
	dfs.h \
ladanyi@1349
    27
	bin_heap.h \
ladanyi@1433
    28
	config.h \
ladanyi@1349
    29
	dijkstra.h \
ladanyi@1349
    30
	dimacs.h \
ladanyi@1349
    31
	error.h \
ladanyi@1349
    32
	fib_heap.h \
deba@1700
    33
	floyd_warshall.h \
ladanyi@1349
    34
	full_graph.h \
deba@1625
    35
	grid_graph.h \
alpar@1401
    36
	graph_adaptor.h \
ladanyi@1349
    37
	graph_utils.h \
ladanyi@1349
    38
	graph_to_eps.h \
deba@1693
    39
	hypercube_graph.h \
ladanyi@1349
    40
	invalid.h \
alpar@1677
    41
	iterable_maps.h \
deba@1700
    42
	johnson.h \
ladanyi@1349
    43
	kruskal.h \
ladanyi@1349
    44
	list_graph.h \
alpar@1629
    45
	lp.h \
alpar@1378
    46
	lp_base.h \
alpar@1381
    47
	lp_cplex.h \
alpar@1378
    48
	lp_glpk.h \
alpar@1378
    49
	lp_skeleton.h \
ladanyi@1349
    50
	maps.h \
ladanyi@1349
    51
	max_matching.h \
ladanyi@1349
    52
	min_cost_flow.h \
ladanyi@1349
    53
	suurballe.h \
ladanyi@1349
    54
	preflow.h \
ladanyi@1349
    55
	path.h \
ladanyi@1349
    56
	radix_heap.h \
ladanyi@1349
    57
	smart_graph.h \
ladanyi@1349
    58
	time_measure.h \
deba@1700
    59
	topology.h \
ladanyi@1349
    60
	unionfind.h \
ladanyi@1349
    61
	xy.h \
ladanyi@1349
    62
	concept_check.h \
ladanyi@1349
    63
	utility.h \
deba@1408
    64
	lemon_reader.h \
deba@1409
    65
	lemon_writer.h \
ladanyi@1349
    66
	graph_reader.h \
ladanyi@1349
    67
	graph_writer.h \
ladanyi@1349
    68
	bits/alteration_notifier.h \
ladanyi@1349
    69
	bits/map_iterator.h \
ladanyi@1349
    70
	bits/array_map.h \
ladanyi@1349
    71
	bits/default_map.h \
ladanyi@1349
    72
	bits/extended_pair.h \
ladanyi@1349
    73
	bits/vector_map.h \
ladanyi@1349
    74
	bits/iterable_graph_extender.h \
ladanyi@1349
    75
	bits/extendable_graph_extender.h \
ladanyi@1349
    76
	bits/clearable_graph_extender.h \
ladanyi@1349
    77
	bits/erasable_graph_extender.h \
deba@1408
    78
	bits/undir_graph_extender.h \
deba@1409
    79
	bits/item_reader.h \
alpar@1488
    80
	bits/item_writer.h \
ladanyi@1349
    81
	concept/graph.h \
ladanyi@1349
    82
	concept/graph_component.h \
ladanyi@1349
    83
	concept/undir_graph.h \
ladanyi@1349
    84
	concept/maps.h \
ladanyi@1349
    85
	concept/heap.h \
klao@959
    86
	concept/path.h