forked from Smorodov/Multitarget-tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.am
More file actions
47 lines (41 loc) · 1.13 KB
/
Makefile.am
File metadata and controls
47 lines (41 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#===========================================================================
#
# src/Makefile.am
#
#===========================================================================
# $Id: Makefile.am,v 1.37 2003/01/31 08:58:09 chris Exp $
lib_LTLIBRARIES = libGTL.la
INCLUDES = \
-I$(top_srcdir)/include \
-I$(top_builddir)/include
libGTL_la_LDFLAGS = \
-version-info $(GENERIC_LIBRARY_VERSION)
libGTL_la_SOURCES = \
gml_scanner.cpp \
gml_parser.cpp \
edge.cpp \
graph.cpp \
node.cpp \
dfs.cpp \
biconnectivity.cpp \
bfs.cpp \
topsort.cpp \
st_number.cpp \
embedding.cpp \
pq_node.cpp \
pq_tree.cpp \
planarity.cpp \
maxflow_ff.cpp \
maxflow_pp.cpp \
maxflow_sap.cpp \
debug.cpp \
components.cpp \
fm_partition.cpp \
ratio_cut_partition.cpp \
min_tree.cpp \
dijkstra.cpp \
bellman_ford.cpp \
bid_dijkstra.cpp
#---------------------------------------------------------------------------
# end of file
#---------------------------------------------------------------------------