src/lemon/Makefile.am
author ladanyi
Tue, 05 Apr 2005 09:08:23 +0000
changeset 1305 c3dc75d4af24
parent 1304 c9c2e90b2342
child 1306 4ea2147274db
permissions -rw-r--r--
- moved lp_base.h, lp_base.cc, lp_glpk.h, lp_glpk.cc, lp_solver_skeleton.h and
lp_solver_skeleton.cc to src/lemon
- modified the includes
     1 AM_CPPFLAGS = -I$(top_srcdir)/src
     2 
     3 pkgconfigdir = $(libdir)/pkgconfig
     4 pkgconfig_DATA = lemon.pc
     5 
     6 lib_LTLIBRARIES = libemon.la
     7 libemon_la_SOURCES =							\
     8 	lp_base.cc							\
     9 	lp_glpk.cc							\
    10 	lp_solver_skeleton.cc
    11 
    12 pkginclude_HEADERS =							\
    13 	array_map.h                                                     \
    14 	bezier.h                                                        \
    15 	bfs.h                                                           \
    16 	dfs.h                                                           \
    17 	bin_heap.h							\
    18 	default_map.h							\
    19 	dijkstra.h							\
    20 	dimacs.h							\
    21 	error.h  							\
    22 	fib_heap.h							\
    23 	full_graph.h							\
    24 	graph_wrapper.h							\
    25 	graph_utils.h							\
    26 	graph_to_eps.h                                                  \
    27 	invalid.h							\
    28 	kruskal.h							\
    29 	list_graph.h							\
    30 	alteration_notifier.h                                           \
    31 	maps.h								\
    32 	max_matching.h                                                  \
    33 	min_cost_flow.h                                                 \
    34 	suurballe.h                                                     \
    35 	preflow.h                                                       \
    36 	path.h                                                          \
    37 	radix_heap.h                                                    \
    38 	smart_graph.h							\
    39 	time_measure.h							\
    40 	unionfind.h							\
    41 	vector_map.h                                                    \
    42 	xy.h								\
    43 	concept_check.h							\
    44 	utility.h							\
    45 	iterable_graph_extender.h					\
    46 	extendable_graph_extender.h					\
    47 	clearable_graph_extender.h					\
    48 	erasable_graph_extender.h					\
    49 	undir_graph_extender.h                                          \
    50 	graph_reader.h							\
    51 	graph_writer.h							\
    52 	map_utils.h
    53 
    54 noinst_HEADERS =							\
    55 	concept/graph.h							\
    56 	concept/graph_component.h					\
    57 	concept/undir_graph.h						\
    58 	concept/sym_graph.h						\
    59 	concept/maps.h							\
    60 	concept/path.h