forked from libgeos/geos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.am
33 lines (25 loc) · 823 Bytes
/
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
#
# This file is part of project GEOS (http://trac.osgeo.org/geos/)
#
prefix=@prefix@
top_srcdir=@top_srcdir@
GEOS_CAPI_VERSION="@VERSION@-CAPI-@CAPI_VERSION@"
GEOS_JTS_PORT="@JTS_PORT@"
INCLUDES = -I$(top_srcdir)/include
capidir = $(includedir)
nodist_capi_HEADERS = \
geos_c.h
lib_LTLIBRARIES = libgeos_c.la
DIR_SOURCES = \
geos_c.cpp \
geos_ts_c.cpp \
$(NULL)
libgeos_c_la_SOURCES = $(DIR_SOURCES)
libgeos_c_la_CPPFLAGS = -DGEOS_CAPI_VERSION='$(GEOS_CAPI_VERSION)' -DGEOS_JTS_PORT='$(GEOS_JTS_PORT)'
libgeos_c_la_LIBADD = $(top_builddir)/src/libgeos.la
libgeos_c_la_LDFLAGS = \
-version-info @CAPI_INTERFACE_CURRENT@:@CAPI_INTERFACE_REVISION@:@CAPI_INTERFACE_AGE@ \
-no-undefined
dist-local:
cp -p $(DIST_SOURCES) Makefile.am Makefile.in $(distdir)
EXTRA_DIST = geos_c.h CMakeLists.txt