File: Makefile.am

package info (click to toggle)
geos 3.0.0-5
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 10,060 kB
  • ctags: 8,674
  • sloc: cpp: 64,513; xml: 23,384; sh: 8,965; ruby: 1,295; makefile: 1,124; python: 824; ansic: 289
file content (39 lines) | stat: -rw-r--r-- 672 bytes parent folder | download
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
SUBDIRS = \
	algorithm \
	geom \
	headers \
	index \
	io \
	noding \
	operation \
	planargraph \
	geomgraph \
	precision \
	simplify \
	util

EXTRA_DIST = Makefile.vc

INCLUDES = -I$(top_srcdir)/source/headers

lib_LTLIBRARIES = libgeos.la

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 \
	noding/libnoding.la \
	operation/liboperation.la \
	planargraph/libplanargraph.la \
	precision/libprecision.la \
	simplify/libsimplify.la \
	util/libutil.la