forked from libspatialindex/libspatialindex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.am
38 lines (33 loc) · 1.18 KB
/
Makefile.am
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
## Makefile.am -- Process this file with automake to produce Makefile.in
SUBDIRS = src . test include
ACLOCAL_AMFLAGS= -I m4
lib_LTLIBRARIES = libspatialindex.la libspatialindex_c.la
libspatialindex_la_SOURCES =
libspatialindex_la_LIBADD = \
src/spatialindex/liblibrary.la \
src/storagemanager/libstoragemanager.la \
src/rtree/librtree.la \
src/mvrtree/libmvrtree.la \
src/tprtree/libtprtree.la \
src/tools/libtools.la
libspatialindex_c_la_SOURCES =
libspatialindex_c_la_LIBADD = \
libspatialindex.la \
src/capi/libsidxc.la
libspatialindex_la_LDFLAGS = -version-info 4:1:0 -no-undefined -lstdc++
libspatialindex_c_la_LDFLAGS = -version-info 4:1:0 -no-undefined -lstdc++
EXTRA_DIST = INSTALL.WIN \
spatialindex.sln \
spatialindex-vc/spatialindex.vcproj \
CMakeLists.txt \
src/CMakeLists.txt \
test/CMakeLists.txt \
test/mvrtree/test1/run \
test/mvrtree/test2/run \
test/rtree/test1/run \
test/rtree/test2/run \
test/rtree/test3/run \
test/rtree/test4/run \
test/tprtree/test1/run \
test/tprtree/test2/run \
test/gtest