src/lemon/Makefile.am
author deba
Tue, 05 Apr 2005 12:30:46 +0000
changeset 1307 d4acebef7276
parent 1306 4ea2147274db
child 1313 96b74270c3a1
permissions -rw-r--r--
Stuffs moved into bits
     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 	bezier.h							\
    14 	bfs.h                                                           \
    15 	dfs.h                                                           \
    16 	bin_heap.h							\
    17 	dijkstra.h							\
    18 	dimacs.h							\
    19 	error.h  							\
    20 	fib_heap.h							\
    21 	full_graph.h							\
    22 	graph_wrapper.h							\
    23 	graph_utils.h							\
    24 	graph_to_eps.h                                                  \
    25 	invalid.h							\
    26 	kruskal.h							\
    27 	list_graph.h							\
    28 	maps.h								\
    29 	max_matching.h                                                  \
    30 	min_cost_flow.h                                                 \
    31 	suurballe.h                                                     \
    32 	preflow.h                                                       \
    33 	path.h                                                          \
    34 	radix_heap.h                                                    \
    35 	smart_graph.h							\
    36 	time_measure.h							\
    37 	unionfind.h							\
    38 	xy.h								\
    39 	concept_check.h							\
    40 	utility.h							\
    41 	graph_reader.h							\
    42 	graph_writer.h							\
    43 	map_utils.h							\
    44 	bits/alteration_notifier.h                                      \
    45 	bits/map_iterator.h						\
    46 	bits/array_map.h						\
    47 	bits/default_map.h						\
    48 	bits/extended_pair.h						\
    49 	bits/vector_map.h                                               \
    50 	bits/iterable_graph_extender.h					\
    51 	bits/extendable_graph_extender.h				\
    52 	bits/clearable_graph_extender.h					\
    53 	bits/erasable_graph_extender.h					\
    54 	bits/undir_graph_extender.h                                     
    55 
    56 noinst_HEADERS =							\
    57 	lp_base.h							\
    58 	lp_glpk.h							\
    59 	lp_solver_skeleton.h						\
    60 	concept/graph.h							\
    61 	concept/graph_component.h					\
    62 	concept/undir_graph.h						\
    63 	concept/sym_graph.h						\
    64 	concept/maps.h							\
    65 	concept/path.h