forked from libgeos/geos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.am
49 lines (43 loc) · 1.15 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
39
40
41
42
43
44
45
46
47
48
49
#
# This file is part of project GEOS (http://trac.osgeo.org/geos/)
#
SUBDIRS = \
algorithm \
geom \
index \
io \
linearref \
noding \
operation \
planargraph \
geomgraph \
precision \
simplify \
triangulate \
util
EXTRA_DIST = Makefile.vc dirlist.mk CMakeLists.txt info.plist.in
AM_CPPFLAGS = -I$(top_srcdir)/include
lib_LTLIBRARIES = libgeos.la
# libgeos uses -release because it is not feasible to know if the ABI
# has changed between releases; the project chooses not to expend the
# effort to determine this because depending programs should not be
# using the C++ library.
libgeos_la_LDFLAGS = \
-release @VERSION_MAJOR@.@VERSION_MINOR@.@VERSION_PATCH@ \
-no-undefined
libgeos_la_SOURCES = \
inlines.cpp
libgeos_la_LIBADD = \
algorithm/libalgorithm.la \
geom/libgeom.la \
geomgraph/libgeomgraph.la \
index/libindex.la \
io/libio.la \
linearref/liblinearref.la \
noding/libnoding.la \
operation/liboperation.la \
planargraph/libplanargraph.la \
precision/libprecision.la \
simplify/libsimplify.la \
triangulate/libtriangulate.la \
util/libutil.la