[geos-commits] r2842 - in trunk/src: . algorithm algorithm/distance algorithm/locate examples geom geom/prep geom/util geomgraph geomgraph/index index index/bintree index/chain index/intervalrtree index/quadtree index/strtree index/sweepline io linearref noding noding/snapround operation operation/buffer operation/distance operation/linemerge operation/overlay operation/polygonize operation/predicate operation/relate operation/union operation/valid planargraph precision simplify util

svn_geos at osgeo.org svn_geos at osgeo.org
Tue Jan 12 21:01:13 EST 2010


Author: mloskot
Date: 2010-01-12 21:01:12 -0500 (Tue, 12 Jan 2010)
New Revision: 2842

Modified:
   trunk/src/Makefile.am
   trunk/src/algorithm/Makefile.am
   trunk/src/algorithm/distance/Makefile.am
   trunk/src/algorithm/locate/Makefile.am
   trunk/src/examples/Makefile.am
   trunk/src/geom/Makefile.am
   trunk/src/geom/prep/Makefile.am
   trunk/src/geom/util/Makefile.am
   trunk/src/geomgraph/Makefile.am
   trunk/src/geomgraph/index/Makefile.am
   trunk/src/index/Makefile.am
   trunk/src/index/bintree/Makefile.am
   trunk/src/index/chain/Makefile.am
   trunk/src/index/intervalrtree/Makefile.am
   trunk/src/index/quadtree/Makefile.am
   trunk/src/index/strtree/Makefile.am
   trunk/src/index/sweepline/Makefile.am
   trunk/src/io/Makefile.am
   trunk/src/linearref/Makefile.am
   trunk/src/noding/Makefile.am
   trunk/src/noding/snapround/Makefile.am
   trunk/src/operation/Makefile.am
   trunk/src/operation/buffer/Makefile.am
   trunk/src/operation/distance/Makefile.am
   trunk/src/operation/linemerge/Makefile.am
   trunk/src/operation/overlay/Makefile.am
   trunk/src/operation/polygonize/Makefile.am
   trunk/src/operation/predicate/Makefile.am
   trunk/src/operation/relate/Makefile.am
   trunk/src/operation/union/Makefile.am
   trunk/src/operation/valid/Makefile.am
   trunk/src/planargraph/Makefile.am
   trunk/src/precision/Makefile.am
   trunk/src/simplify/Makefile.am
   trunk/src/util/Makefile.am
Log:
Updated Makefile.am files in src subtree after moved to new location (#315)

Modified: trunk/src/Makefile.am
===================================================================
--- trunk/src/Makefile.am	2010-01-13 00:48:20 UTC (rev 2841)
+++ trunk/src/Makefile.am	2010-01-13 02:01:12 UTC (rev 2842)
@@ -1,41 +1,44 @@
+# $Id$
+#
+# This file is part of project GEOS (http://trac.osgeo.org/geos/) 
+#
 SUBDIRS = \
-	algorithm \
-	geom \
-	headers \
-	index \
-	io \
-	linearref \
-	noding \
-	operation \
-	planargraph \
-	geomgraph \
-	precision \
-	simplify \
-	util
+    algorithm \
+    geom \
+    index \
+    io \
+    linearref \
+    noding \
+    operation \
+    planargraph \
+    geomgraph \
+    precision \
+    simplify \
+    util
 
 EXTRA_DIST = Makefile.vc dirlist.mk
 
-INCLUDES = -I$(top_srcdir)/source/headers
+INCLUDES = -I$(top_srcdir)/include
 
 lib_LTLIBRARIES = libgeos.la
 
 libgeos_la_LDFLAGS = \
-	-release @VERSION_MAJOR at .@VERSION_MINOR at .@VERSION_PATCH@ \
-	-no-undefined
+    -release @VERSION_MAJOR at .@VERSION_MINOR at .@VERSION_PATCH@ \
+    -no-undefined
 
 libgeos_la_SOURCES = \
-	inlines.cpp
+    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 \
-	util/libutil.la  
+    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 \
+    util/libutil.la  


Property changes on: trunk/src/Makefile.am
___________________________________________________________________
Modified: svn:keywords
   - Author Date Id Revision
   + Id

Modified: trunk/src/algorithm/Makefile.am
===================================================================
--- trunk/src/algorithm/Makefile.am	2010-01-13 00:48:20 UTC (rev 2841)
+++ trunk/src/algorithm/Makefile.am	2010-01-13 02:01:12 UTC (rev 2842)
@@ -1,32 +1,36 @@
+# $Id$
+#
+# This file is part of project GEOS (http://trac.osgeo.org/geos/) 
+#
 SUBDIRS = \
-	locate \
-	distance
+    locate \
+    distance
 
 noinst_LTLIBRARIES = libalgorithm.la
 
-INCLUDES = -I$(top_srcdir)/source/headers 
+INCLUDES = -I$(top_srcdir)/include 
 
 libalgorithm_la_SOURCES = \
-	Angle.cpp \
-	BoundaryNodeRule.cpp \
-	CentroidArea.cpp \
-	CentroidLine.cpp \
-	CentroidPoint.cpp \
-	CGAlgorithms.cpp \
-	ConvexHull.cpp \
-	HCoordinate.cpp \
-	InteriorPointArea.cpp \
-	InteriorPointLine.cpp \
-	InteriorPointPoint.cpp \
-	LineIntersector.cpp \
-	MCPointInRing.cpp \
-	MinimumDiameter.cpp \
-	NotRepresentableException.cpp \
-	PointLocator.cpp \
-	RayCrossingCounter.cpp \
-	RobustDeterminant.cpp \
-	SimplePointInRing.cpp \
-	SIRtreePointInRing.cpp 
+    Angle.cpp \
+    BoundaryNodeRule.cpp \
+    CentroidArea.cpp \
+    CentroidLine.cpp \
+    CentroidPoint.cpp \
+    CGAlgorithms.cpp \
+    ConvexHull.cpp \
+    HCoordinate.cpp \
+    InteriorPointArea.cpp \
+    InteriorPointLine.cpp \
+    InteriorPointPoint.cpp \
+    LineIntersector.cpp \
+    MCPointInRing.cpp \
+    MinimumDiameter.cpp \
+    NotRepresentableException.cpp \
+    PointLocator.cpp \
+    RayCrossingCounter.cpp \
+    RobustDeterminant.cpp \
+    SimplePointInRing.cpp \
+    SIRtreePointInRing.cpp 
 
 # Deprecated files
 # (http://geos.refractions.net/pipermail/geos-devel/2006-March/001828.html):
@@ -36,4 +40,3 @@
 libalgorithm_la_LIBADD =  \
         locate/liblocation.la \
         distance/libdistance.la
-


Property changes on: trunk/src/algorithm/Makefile.am
___________________________________________________________________
Modified: svn:keywords
   - Author Date Id Revision
   + Id

Modified: trunk/src/algorithm/distance/Makefile.am
===================================================================
--- trunk/src/algorithm/distance/Makefile.am	2010-01-13 00:48:20 UTC (rev 2841)
+++ trunk/src/algorithm/distance/Makefile.am	2010-01-13 02:01:12 UTC (rev 2842)
@@ -1,3 +1,7 @@
+# $Id$
+#
+# This file is part of project GEOS (http://trac.osgeo.org/geos/) 
+#
 SUBDIRS = 
 
 noinst_LTLIBRARIES = libdistance.la
@@ -2,10 +6,8 @@
 
-INCLUDES = -I$(top_srcdir)/source/headers 
+INCLUDES = -I$(top_srcdir)/include 
 
 libdistance_la_SOURCES = \
-	DiscreteHausdorffDistance.cpp \
-	DistanceToPoint.cpp 
+    DiscreteHausdorffDistance.cpp \
+    DistanceToPoint.cpp 
 
 libdistance_la_LIBADD = 
-
-


Property changes on: trunk/src/algorithm/distance/Makefile.am
___________________________________________________________________
Added: svn:keywords
   + Id

Modified: trunk/src/algorithm/locate/Makefile.am
===================================================================
--- trunk/src/algorithm/locate/Makefile.am	2010-01-13 00:48:20 UTC (rev 2841)
+++ trunk/src/algorithm/locate/Makefile.am	2010-01-13 02:01:12 UTC (rev 2842)
@@ -1,3 +1,7 @@
+# $Id$
+#
+# This file is part of project GEOS (http://trac.osgeo.org/geos/) 
+#
 SUBDIRS = 
 
 noinst_LTLIBRARIES = liblocation.la
@@ -2,3 +6,3 @@
 
-INCLUDES = -I$(top_srcdir)/source/headers 
+INCLUDES = -I$(top_srcdir)/include 
 
@@ -10,5 +14,3 @@
 	SimplePointInAreaLocator.cpp
 
 liblocation_la_LIBADD = 
-
-


Property changes on: trunk/src/algorithm/locate/Makefile.am
___________________________________________________________________
Added: svn:keywords
   + Id

Modified: trunk/src/examples/Makefile.am
===================================================================
--- trunk/src/examples/Makefile.am	2010-01-13 00:48:20 UTC (rev 2841)
+++ trunk/src/examples/Makefile.am	2010-01-13 02:01:12 UTC (rev 2842)
@@ -1,14 +1,24 @@
-noinst_PROGRAMS = CoordinateSequencesExample \
-                  CustomCoordinateSequenceExample 
+# $Id$
+#
+# This file is part of project GEOS (http://trac.osgeo.org/geos/) 
+#
+noinst_PROGRAMS = \
+    CoordinateSequencesExample \
+    CustomCoordinateSequenceExample 
 
 LIBS = ../geom/libgeos.la
 # -lmpatrol -lbfd -lintl -liberty -limagehlp
 
-CustomCoordinateSequenceExample_SOURCES = CustomPointCoordinateSequence.cpp CustomCoordinateSequenceExample.cpp CPCLException.cpp CustomCoordinateSequenceExample.h
+CustomCoordinateSequenceExample_SOURCES = \
+    CustomPointCoordinateSequence.cpp \
+    CustomCoordinateSequenceExample.cpp \
+    CPCLException.cpp \
+    CustomCoordinateSequenceExample.h
+
 CustomCoordinateSequenceExample_LDADD = $(LIBS)
 
 CoordinateSequencesExample_SOURCES = CoordinateSequencesExample.cpp 
 CoordinateSequencesExample_LDADD = $(LIBS)
 
-INCLUDES = -I$(top_srcdir)/headers
+INCLUDES = -I$(top_srcdir)/include
 INCLUDES += -I$(top_srcdir)/io/markup


Property changes on: trunk/src/examples/Makefile.am
___________________________________________________________________
Modified: svn:keywords
   - Author Date Id Revision
   + Id

Modified: trunk/src/geom/Makefile.am
===================================================================
--- trunk/src/geom/Makefile.am	2010-01-13 00:48:20 UTC (rev 2841)
+++ trunk/src/geom/Makefile.am	2010-01-13 02:01:12 UTC (rev 2842)
@@ -1,42 +1,43 @@
-
+# $Id$
+#
+# This file is part of project GEOS (http://trac.osgeo.org/geos/) 
+#
 SUBDIRS=\
-	util \
-	prep
+    util \
+    prep
 
 noinst_LTLIBRARIES = \
-	libgeom.la
+    libgeom.la
 
-INCLUDES = -I$(top_srcdir)/source/headers 
+INCLUDES = -I$(top_srcdir)/include 
 
 libgeom_la_SOURCES = \
-	Coordinate.cpp \
-	CoordinateSequence.cpp \
-	CoordinateSequenceFactory.cpp  \
-	CoordinateArraySequence.cpp \
-	CoordinateArraySequenceFactory.cpp \
-	Dimension.cpp \
-	Envelope.cpp \
-	Geometry.cpp \
-	GeometryList.cpp \
-	GeometryCollection.cpp \
-	GeometryComponentFilter.cpp \
-	GeometryFactory.cpp \
-	IntersectionMatrix.cpp \
-	LinearRing.cpp \
-	LineSegment.cpp \
-	LineString.cpp \
-	Location.cpp \
-	MultiLineString.cpp \
-	MultiPoint.cpp \
-	MultiPolygon.cpp \
-	Point.cpp \
-	Polygon.cpp \
-	PrecisionModel.cpp \
-	Triangle.cpp
+    Coordinate.cpp \
+    CoordinateSequence.cpp \
+    CoordinateSequenceFactory.cpp  \
+    CoordinateArraySequence.cpp \
+    CoordinateArraySequenceFactory.cpp \
+    Dimension.cpp \
+    Envelope.cpp \
+    Geometry.cpp \
+    GeometryList.cpp \
+    GeometryCollection.cpp \
+    GeometryComponentFilter.cpp \
+    GeometryFactory.cpp \
+    IntersectionMatrix.cpp \
+    LinearRing.cpp \
+    LineSegment.cpp \
+    LineString.cpp \
+    Location.cpp \
+    MultiLineString.cpp \
+    MultiPoint.cpp \
+    MultiPolygon.cpp \
+    Point.cpp \
+    Polygon.cpp \
+    PrecisionModel.cpp \
+    Triangle.cpp
 
 
 libgeom_la_LIBADD = \
-	util/libgeomutil.la \
-	prep/libgeomprep.la
-
-
+    util/libgeomutil.la \
+    prep/libgeomprep.la


Property changes on: trunk/src/geom/Makefile.am
___________________________________________________________________
Modified: svn:keywords
   - Author Date Id Revision
   + Id

Modified: trunk/src/geom/prep/Makefile.am
===================================================================
--- trunk/src/geom/prep/Makefile.am	2010-01-13 00:48:20 UTC (rev 2841)
+++ trunk/src/geom/prep/Makefile.am	2010-01-13 02:01:12 UTC (rev 2842)
@@ -1,7 +1,10 @@
-
+# $Id$
+#
+# This file is part of project GEOS (http://trac.osgeo.org/geos/) 
+#
 noinst_LTLIBRARIES = libgeomprep.la
 
-INCLUDES = -I$(top_srcdir)/source/headers 
+INCLUDES = -I$(top_srcdir)/include 
 
 ## these are full inlined
 # PolygonExtracter.cpp 
@@ -9,16 +12,16 @@
 # LinearComponentExtracter.cpp 
 
 libgeomprep_la_SOURCES = \
-	AbstractPreparedPolygonContains.cpp \
-	BasicPreparedGeometry.cpp \
-	PreparedGeometry.cpp \
-	PreparedGeometryFactory.cpp \
-	PreparedLineString.cpp \
-	PreparedLineStringIntersects.cpp \
-	PreparedPoint.cpp \
-	PreparedPolygonContains.cpp \
-	PreparedPolygonContainsProperly.cpp \
-	PreparedPolygonCovers.cpp \
-	PreparedPolygon.cpp \
-	PreparedPolygonIntersects.cpp \
-	PreparedPolygonPredicate.cpp
+    AbstractPreparedPolygonContains.cpp \
+    BasicPreparedGeometry.cpp \
+    PreparedGeometry.cpp \
+    PreparedGeometryFactory.cpp \
+    PreparedLineString.cpp \
+    PreparedLineStringIntersects.cpp \
+    PreparedPoint.cpp \
+    PreparedPolygonContains.cpp \
+    PreparedPolygonContainsProperly.cpp \
+    PreparedPolygonCovers.cpp \
+    PreparedPolygon.cpp \
+    PreparedPolygonIntersects.cpp \
+    PreparedPolygonPredicate.cpp


Property changes on: trunk/src/geom/prep/Makefile.am
___________________________________________________________________
Added: svn:keywords
   + Id

Modified: trunk/src/geom/util/Makefile.am
===================================================================
--- trunk/src/geom/util/Makefile.am	2010-01-13 00:48:20 UTC (rev 2841)
+++ trunk/src/geom/util/Makefile.am	2010-01-13 02:01:12 UTC (rev 2842)
@@ -1,12 +1,15 @@
-
+# $Id$
+#
+# This file is part of project GEOS (http://trac.osgeo.org/geos/) 
+#
 noinst_LTLIBRARIES = libgeomutil.la
 
-INCLUDES = -I$(top_srcdir)/source/headers 
+INCLUDES = -I$(top_srcdir)/include 
 
 libgeomutil_la_SOURCES = \
-	ComponentCoordinateExtracter.cpp \
-	CoordinateOperation.cpp \
-	GeometryEditor.cpp \
-	GeometryTransformer.cpp \
-	ShortCircuitedGeometryVisitor.cpp \
-        GeometryCombiner.cpp
+    ComponentCoordinateExtracter.cpp \
+    CoordinateOperation.cpp \
+    GeometryEditor.cpp \
+    GeometryTransformer.cpp \
+    ShortCircuitedGeometryVisitor.cpp \
+    GeometryCombiner.cpp


Property changes on: trunk/src/geom/util/Makefile.am
___________________________________________________________________
Modified: svn:keywords
   - Author Date Id Revision
   + Id

Modified: trunk/src/geomgraph/Makefile.am
===================================================================
--- trunk/src/geomgraph/Makefile.am	2010-01-13 00:48:20 UTC (rev 2841)
+++ trunk/src/geomgraph/Makefile.am	2010-01-13 02:01:12 UTC (rev 2842)
@@ -1,3 +1,7 @@
+# $Id$
+#
+# This file is part of project GEOS (http://trac.osgeo.org/geos/) 
+#
 SUBDIRS = index
 
 noinst_LTLIBRARIES = libgeomgraph.la
@@ -2,3 +6,3 @@
 
-INCLUDES = -I$(top_srcdir)/source/headers 
+INCLUDES = -I$(top_srcdir)/include 
 


Property changes on: trunk/src/geomgraph/Makefile.am
___________________________________________________________________
Modified: svn:keywords
   - Author Date Id Revision
   + Id

Modified: trunk/src/geomgraph/index/Makefile.am
===================================================================
--- trunk/src/geomgraph/index/Makefile.am	2010-01-13 00:48:20 UTC (rev 2841)
+++ trunk/src/geomgraph/index/Makefile.am	2010-01-13 02:01:12 UTC (rev 2842)
@@ -1,15 +1,17 @@
-
+# $Id$
+#
+# This file is part of project GEOS (http://trac.osgeo.org/geos/) 
+#
 noinst_LTLIBRARIES = libgeomgraphindex.la
 
-INCLUDES = -I$(top_srcdir)/source/headers 
+INCLUDES = -I$(top_srcdir)/include 
 
 libgeomgraphindex_la_SOURCES = \
-	MonotoneChainEdge.cpp \
-	MonotoneChainIndexer.cpp \
-	SegmentIntersector.cpp \
-	SimpleEdgeSetIntersector.cpp \
-	SimpleMCSweepLineIntersector.cpp \
-	SimpleSweepLineIntersector.cpp \
-	SweepLineEvent.cpp \
-	SweepLineSegment.cpp 
-
+    MonotoneChainEdge.cpp \
+    MonotoneChainIndexer.cpp \
+    SegmentIntersector.cpp \
+    SimpleEdgeSetIntersector.cpp \
+    SimpleMCSweepLineIntersector.cpp \
+    SimpleSweepLineIntersector.cpp \
+    SweepLineEvent.cpp \
+    SweepLineSegment.cpp 


Property changes on: trunk/src/geomgraph/index/Makefile.am
___________________________________________________________________
Modified: svn:keywords
   - Author Date Id Revision
   + Id

Modified: trunk/src/index/Makefile.am
===================================================================
--- trunk/src/index/Makefile.am	2010-01-13 00:48:20 UTC (rev 2841)
+++ trunk/src/index/Makefile.am	2010-01-13 02:01:12 UTC (rev 2842)
@@ -1,3 +1,7 @@
+# $Id$
+#
+# This file is part of project GEOS (http://trac.osgeo.org/geos/) 
+#
 SUBDIRS = \
 	bintree \
 	chain \
@@ -17,4 +21,3 @@
 	quadtree/libindexquadtree.la \
 	strtree/libindexstrtree.la \
 	sweepline/libindexsweepline.la
-


Property changes on: trunk/src/index/Makefile.am
___________________________________________________________________
Modified: svn:keywords
   - Author Date Id Revision
   + Id

Modified: trunk/src/index/bintree/Makefile.am
===================================================================
--- trunk/src/index/bintree/Makefile.am	2010-01-13 00:48:20 UTC (rev 2841)
+++ trunk/src/index/bintree/Makefile.am	2010-01-13 02:01:12 UTC (rev 2842)
@@ -1,15 +1,17 @@
-
+# $Id$
+#
+# This file is part of project GEOS (http://trac.osgeo.org/geos/) 
+#
 noinst_LTLIBRARIES = libindexbintree.la
 
-INCLUDES = -I$(top_srcdir)/source/headers 
+INCLUDES = -I$(top_srcdir)/include 
 
 libindexbintree_la_SOURCES = \
-	Bintree.cpp \
-	Interval.cpp \
-	Node.cpp \
-	Key.cpp \
-	NodeBase.cpp \
-	Root.cpp 
+    Bintree.cpp \
+    Interval.cpp \
+    Node.cpp \
+    Key.cpp \
+    NodeBase.cpp \
+    Root.cpp 
 
 libindexbintree_la_LIBADD = 
-


Property changes on: trunk/src/index/bintree/Makefile.am
___________________________________________________________________
Modified: svn:keywords
   - Author Date Id Revision
   + Id

Modified: trunk/src/index/chain/Makefile.am
===================================================================
--- trunk/src/index/chain/Makefile.am	2010-01-13 00:48:20 UTC (rev 2841)
+++ trunk/src/index/chain/Makefile.am	2010-01-13 02:01:12 UTC (rev 2842)
@@ -1,11 +1,13 @@
-
+# $Id$
+#
+# This file is part of project GEOS (http://trac.osgeo.org/geos/) 
+#
 noinst_LTLIBRARIES = libindexchain.la
 
-INCLUDES = -I$(top_srcdir)/source/headers 
+INCLUDES = -I$(top_srcdir)/include 
 
 libindexchain_la_SOURCES = \
 	MonotoneChain.cpp \
 	MonotoneChainBuilder.cpp \
 	MonotoneChainOverlapAction.cpp \
 	MonotoneChainSelectAction.cpp 
-


Property changes on: trunk/src/index/chain/Makefile.am
___________________________________________________________________
Modified: svn:keywords
   - Author Date Id Revision
   + Id

Modified: trunk/src/index/intervalrtree/Makefile.am
===================================================================
--- trunk/src/index/intervalrtree/Makefile.am	2010-01-13 00:48:20 UTC (rev 2841)
+++ trunk/src/index/intervalrtree/Makefile.am	2010-01-13 02:01:12 UTC (rev 2842)
@@ -1,7 +1,10 @@
-
+# $Id$
+#
+# This file is part of project GEOS (http://trac.osgeo.org/geos/) 
+#
 noinst_LTLIBRARIES = libintervalrtree.la
 
-INCLUDES = -I$(top_srcdir)/source/headers 
+INCLUDES = -I$(top_srcdir)/include 
 
 libintervalrtree_la_SOURCES = \
 	IntervalRTreeBranchNode.cpp \


Property changes on: trunk/src/index/intervalrtree/Makefile.am
___________________________________________________________________
Added: svn:keywords
   + Id

Modified: trunk/src/index/quadtree/Makefile.am
===================================================================
--- trunk/src/index/quadtree/Makefile.am	2010-01-13 00:48:20 UTC (rev 2841)
+++ trunk/src/index/quadtree/Makefile.am	2010-01-13 02:01:12 UTC (rev 2842)
@@ -1,14 +1,16 @@
-
+# $Id$
+#
+# This file is part of project GEOS (http://trac.osgeo.org/geos/) 
+#
 noinst_LTLIBRARIES = libindexquadtree.la
 
-INCLUDES = -I$(top_srcdir)/source/headers 
+INCLUDES = -I$(top_srcdir)/include 
 
 libindexquadtree_la_SOURCES = \
-	DoubleBits.cpp \
-	IntervalSize.cpp \
-	Quadtree.cpp \
-	Key.cpp \
-	Node.cpp \
-	NodeBase.cpp \
-	Root.cpp 
-
+    DoubleBits.cpp \
+    IntervalSize.cpp \
+    Quadtree.cpp \
+    Key.cpp \
+    Node.cpp \
+    NodeBase.cpp \
+    Root.cpp 


Property changes on: trunk/src/index/quadtree/Makefile.am
___________________________________________________________________
Modified: svn:keywords
   - Author Date Id Revision
   + Id

Modified: trunk/src/index/strtree/Makefile.am
===================================================================
--- trunk/src/index/strtree/Makefile.am	2010-01-13 00:48:20 UTC (rev 2841)
+++ trunk/src/index/strtree/Makefile.am	2010-01-13 02:01:12 UTC (rev 2842)
@@ -1,15 +1,17 @@
-
+# $Id$
+#
+# This file is part of project GEOS (http://trac.osgeo.org/geos/) 
+#
 noinst_LTLIBRARIES = libindexstrtree.la
 
-INCLUDES = -I$(top_srcdir)/source/headers 
+INCLUDES = -I$(top_srcdir)/include 
 
 libindexstrtree_la_SOURCES = \
-	AbstractNode.cpp \
-	AbstractSTRtree.cpp \
-	Interval.cpp \
-	ItemBoundable.cpp \
-	SIRtree.cpp \
-	STRtree.cpp 
+    AbstractNode.cpp \
+    AbstractSTRtree.cpp \
+    Interval.cpp \
+    ItemBoundable.cpp \
+    SIRtree.cpp \
+    STRtree.cpp 
 
 libindexstrtree_la_LIBADD = 
-


Property changes on: trunk/src/index/strtree/Makefile.am
___________________________________________________________________
Modified: svn:keywords
   - Author Date Id Revision
   + Id

Modified: trunk/src/index/sweepline/Makefile.am
===================================================================
--- trunk/src/index/sweepline/Makefile.am	2010-01-13 00:48:20 UTC (rev 2841)
+++ trunk/src/index/sweepline/Makefile.am	2010-01-13 02:01:12 UTC (rev 2842)
@@ -1,12 +1,14 @@
-
+# $Id$
+#
+# This file is part of project GEOS (http://trac.osgeo.org/geos/) 
+#
 noinst_LTLIBRARIES = libindexsweepline.la
 
-INCLUDES = -I$(top_srcdir)/source/headers 
+INCLUDES = -I$(top_srcdir)/include 
 
 libindexsweepline_la_SOURCES = \
-	SweepLineEvent.cpp \
-	SweepLineIndex.cpp \
-	SweepLineInterval.cpp 
+    SweepLineEvent.cpp \
+    SweepLineIndex.cpp \
+    SweepLineInterval.cpp 
 
 libindexsweepline_la_LIBADD = 
-


Property changes on: trunk/src/index/sweepline/Makefile.am
___________________________________________________________________
Modified: svn:keywords
   - Author Date Id Revision
   + Id

Modified: trunk/src/io/Makefile.am
===================================================================
--- trunk/src/io/Makefile.am	2010-01-13 00:48:20 UTC (rev 2841)
+++ trunk/src/io/Makefile.am	2010-01-13 02:01:12 UTC (rev 2842)
@@ -1,3 +1,7 @@
+# $Id$
+#
+# This file is part of project GEOS (http://trac.osgeo.org/geos/) 
+#
 #SUBDIRS = markup
 
 noinst_LTLIBRARIES = libio.la
@@ -2,3 +6,3 @@
 
-INCLUDES = -I$(top_srcdir)/source/headers 
+INCLUDES = -I$(top_srcdir)/include 
 
@@ -18,5 +22,3 @@
 	CLocalizer.cpp
 
 libio_la_LIBADD = 
-
-


Property changes on: trunk/src/io/Makefile.am
___________________________________________________________________
Modified: svn:keywords
   - Author Date Id Revision
   + Id

Modified: trunk/src/linearref/Makefile.am
===================================================================
--- trunk/src/linearref/Makefile.am	2010-01-13 00:48:20 UTC (rev 2841)
+++ trunk/src/linearref/Makefile.am	2010-01-13 02:01:12 UTC (rev 2842)
@@ -1,18 +1,21 @@
-
+# $Id$
+#
+# This file is part of project GEOS (http://trac.osgeo.org/geos/) 
+#
 noinst_LTLIBRARIES = liblinearref.la
 
-INCLUDES = -I$(top_srcdir)/source/headers
+INCLUDES = -I$(top_srcdir)/include
 
 liblinearref_la_SOURCES = \
-	ExtractLineByLocation.cpp		\
-	LengthIndexedLine.cpp \
-	LengthIndexOfPoint.cpp \
-	LengthLocationMap.cpp \
-	LinearIterator.cpp \
-	LinearGeometryBuilder.cpp		\
-	LinearLocation.cpp \
-	LocationIndexOfLine.cpp	\
-	LocationIndexOfPoint.cpp
+    ExtractLineByLocation.cpp \
+    LengthIndexedLine.cpp \
+    LengthIndexOfPoint.cpp \
+    LengthLocationMap.cpp \
+    LinearIterator.cpp \
+    LinearGeometryBuilder.cpp \
+    LinearLocation.cpp \
+    LocationIndexOfLine.cpp \
+    LocationIndexOfPoint.cpp
 
 # Deprecated files
 # (http://geos.refractions.net/pipermail/geos-devel/2006-March/001828.html):


Property changes on: trunk/src/linearref/Makefile.am
___________________________________________________________________
Added: svn:keywords
   + Id

Modified: trunk/src/noding/Makefile.am
===================================================================
--- trunk/src/noding/Makefile.am	2010-01-13 00:48:20 UTC (rev 2841)
+++ trunk/src/noding/Makefile.am	2010-01-13 02:01:12 UTC (rev 2842)
@@ -1,3 +1,7 @@
+# $Id$
+#
+# This file is part of project GEOS (http://trac.osgeo.org/geos/) 
+#
 SUBDIRS = snapround
 
 noinst_LTLIBRARIES = libnoding.la
@@ -2,3 +6,3 @@
 
-INCLUDES = -I$(top_srcdir)/source/headers 
+INCLUDES = -I$(top_srcdir)/include 
 
@@ -27,4 +31,3 @@
 	SingleInteriorIntersectionFinder.cpp
 
 libnoding_la_LIBADD = snapround/libsnapround.la
-


Property changes on: trunk/src/noding/Makefile.am
___________________________________________________________________
Modified: svn:keywords
   - Author Date Id Revision
   + Id

Modified: trunk/src/noding/snapround/Makefile.am
===================================================================
--- trunk/src/noding/snapround/Makefile.am	2010-01-13 00:48:20 UTC (rev 2841)
+++ trunk/src/noding/snapround/Makefile.am	2010-01-13 02:01:12 UTC (rev 2842)
@@ -1,3 +1,7 @@
+# $Id$
+#
+# This file is part of project GEOS (http://trac.osgeo.org/geos/) 
+#
 SUBDIRS = 
 
 noinst_LTLIBRARIES = libsnapround.la
@@ -2,13 +6,10 @@
 
-INCLUDES = -I$(top_srcdir)/source/headers 
+INCLUDES = -I$(top_srcdir)/include 
 
 libsnapround_la_SOURCES = \
-	HotPixel.cpp \
-	MCIndexPointSnapper.cpp \
-	MCIndexSnapRounder.cpp \
-	SimpleSnapRounder.cpp
+    HotPixel.cpp \
+    MCIndexPointSnapper.cpp \
+    MCIndexSnapRounder.cpp \
+    SimpleSnapRounder.cpp
 
 libsnapround_la_LIBADD = 
-
-
-


Property changes on: trunk/src/noding/snapround/Makefile.am
___________________________________________________________________
Modified: svn:keywords
   - Author Date Id Revision
   + Id

Modified: trunk/src/operation/Makefile.am
===================================================================
--- trunk/src/operation/Makefile.am	2010-01-13 00:48:20 UTC (rev 2841)
+++ trunk/src/operation/Makefile.am	2010-01-13 02:01:12 UTC (rev 2842)
@@ -1,31 +1,33 @@
+# $Id$
+#
+# This file is part of project GEOS (http://trac.osgeo.org/geos/) 
+#
 SUBDIRS = \
-	buffer 		\
-	distance 	\
-	linemerge 	\
-	overlay 	\
-	polygonize	\
-	predicate	\
-	relate		\
-        union           \
-	valid		
+    buffer \
+    distance \
+    linemerge \
+    overlay \
+    polygonize \
+    predicate \
+    relate \
+    union \
+    valid       
 
 noinst_LTLIBRARIES = liboperation.la
 
-INCLUDES = -I$(top_srcdir)/source/headers 
+INCLUDES = -I$(top_srcdir)/include 
 
 liboperation_la_SOURCES = \
-	GeometryGraphOperation.cpp \
-	IsSimpleOp.cpp 
+    GeometryGraphOperation.cpp \
+    IsSimpleOp.cpp 
 
 liboperation_la_LIBADD = \
-	buffer/libopbuffer.la		\
-	distance/libopdistance.la	\
-	linemerge/liboplinemerge.la	\
-	overlay/libopoverlay.la		\
-	polygonize/liboppolygonize.la	\
-	predicate/liboppredicate.la	\
-	relate/liboprelate.la		\
-        union/libopunion.la             \
-	valid/libopvalid.la
-
-
+    buffer/libopbuffer.la \
+    distance/libopdistance.la \
+    linemerge/liboplinemerge.la \
+    overlay/libopoverlay.la \
+    polygonize/liboppolygonize.la \
+    predicate/liboppredicate.la \
+    relate/liboprelate.la \
+    union/libopunion.la \
+    valid/libopvalid.la


Property changes on: trunk/src/operation/Makefile.am
___________________________________________________________________
Modified: svn:keywords
   - Author Date Id Revision
   + Id

Modified: trunk/src/operation/buffer/Makefile.am
===================================================================
--- trunk/src/operation/buffer/Makefile.am	2010-01-13 00:48:20 UTC (rev 2841)
+++ trunk/src/operation/buffer/Makefile.am	2010-01-13 02:01:12 UTC (rev 2842)
@@ -1,3 +1,7 @@
+# $Id$
+#
+# This file is part of project GEOS (http://trac.osgeo.org/geos/) 
+#
 SUBDIRS = 
 
 noinst_LTLIBRARIES = libopbuffer.la
@@ -2,3 +6,3 @@
 
-INCLUDES = -I$(top_srcdir)/source/headers 
+INCLUDES = -I$(top_srcdir)/include 
 
@@ -19,5 +23,3 @@
 	$(NULL)
 
 libopbuffer_la_LIBADD = 
-
-


Property changes on: trunk/src/operation/buffer/Makefile.am
___________________________________________________________________
Modified: svn:keywords
   - Author Date Id Revision
   + Id

Modified: trunk/src/operation/distance/Makefile.am
===================================================================
--- trunk/src/operation/distance/Makefile.am	2010-01-13 00:48:20 UTC (rev 2841)
+++ trunk/src/operation/distance/Makefile.am	2010-01-13 02:01:12 UTC (rev 2842)
@@ -1,3 +1,7 @@
+# $Id$
+#
+# This file is part of project GEOS (http://trac.osgeo.org/geos/) 
+#
 SUBDIRS = 
 
 noinst_LTLIBRARIES = libopdistance.la
@@ -2,11 +6,10 @@
 
-INCLUDES = -I$(top_srcdir)/source/headers 
+INCLUDES = -I$(top_srcdir)/include 
 
 libopdistance_la_SOURCES = \
-	ConnectedElementLocationFilter.cpp \
-	ConnectedElementPointFilter.cpp \
-	DistanceOp.cpp \
-	GeometryLocation.cpp 
+    ConnectedElementLocationFilter.cpp \
+    ConnectedElementPointFilter.cpp \
+    DistanceOp.cpp \
+    GeometryLocation.cpp 
 
 libopdistance_la_LIBADD = 
-


Property changes on: trunk/src/operation/distance/Makefile.am
___________________________________________________________________
Modified: svn:keywords
   - Author Date Id Revision
   + Id

Modified: trunk/src/operation/linemerge/Makefile.am
===================================================================
--- trunk/src/operation/linemerge/Makefile.am	2010-01-13 00:48:20 UTC (rev 2841)
+++ trunk/src/operation/linemerge/Makefile.am	2010-01-13 02:01:12 UTC (rev 2842)
@@ -1,3 +1,7 @@
+# $Id$
+#
+# This file is part of project GEOS (http://trac.osgeo.org/geos/) 
+#
 SUBDIRS = 
 
 noinst_LTLIBRARIES = liboplinemerge.la
@@ -2,3 +6,3 @@
 
-INCLUDES = -I$(top_srcdir)/source/headers 
+INCLUDES = -I$(top_srcdir)/include 
 
@@ -13,5 +17,3 @@
 	LineSequencer.cpp
 
 liboplinemerge_la_LIBADD = 
-
-


Property changes on: trunk/src/operation/linemerge/Makefile.am
___________________________________________________________________
Modified: svn:keywords
   - Author Date Id Revision
   + Id

Modified: trunk/src/operation/overlay/Makefile.am
===================================================================
--- trunk/src/operation/overlay/Makefile.am	2010-01-13 00:48:20 UTC (rev 2841)
+++ trunk/src/operation/overlay/Makefile.am	2010-01-13 02:01:12 UTC (rev 2842)
@@ -1,3 +1,7 @@
+# $Id$
+#
+# This file is part of project GEOS (http://trac.osgeo.org/geos/) 
+#
 SUBDIRS = 
 
 noinst_LTLIBRARIES = libopoverlay.la
@@ -2,25 +6,23 @@
 
-INCLUDES = -I$(top_srcdir)/source/headers 
+INCLUDES = -I$(top_srcdir)/include 
 
 libopoverlay_la_SOURCES = \
-	EdgeSetNoder.cpp \
-	ElevationMatrixCell.cpp \
-	ElevationMatrix.cpp \
-	LineBuilder.cpp \
-	MaximalEdgeRing.cpp \
-	MinimalEdgeRing.cpp \
-	OverlayNodeFactory.cpp \
-	OverlayOp.cpp \
-	PointBuilder.cpp \
-	PolygonBuilder.cpp \
-	snap/GeometrySnapper.cpp \
-	snap/LineStringSnapper.cpp \
-	snap/SnapOverlayOp.cpp \
-	snap/SnapIfNeededOverlayOp.cpp \
-	validate/FuzzyPointLocator.cpp \
-	validate/OffsetPointGenerator.cpp \
-	validate/OverlayResultValidator.cpp 
+    EdgeSetNoder.cpp \
+    ElevationMatrixCell.cpp \
+    ElevationMatrix.cpp \
+    LineBuilder.cpp \
+    MaximalEdgeRing.cpp \
+    MinimalEdgeRing.cpp \
+    OverlayNodeFactory.cpp \
+    OverlayOp.cpp \
+    PointBuilder.cpp \
+    PolygonBuilder.cpp \
+    snap/GeometrySnapper.cpp \
+    snap/LineStringSnapper.cpp \
+    snap/SnapOverlayOp.cpp \
+    snap/SnapIfNeededOverlayOp.cpp \
+    validate/FuzzyPointLocator.cpp \
+    validate/OffsetPointGenerator.cpp \
+    validate/OverlayResultValidator.cpp 
 
 libopoverlay_la_LIBADD = 
-
-


Property changes on: trunk/src/operation/overlay/Makefile.am
___________________________________________________________________
Modified: svn:keywords
   - Author Date Id Revision
   + Id

Modified: trunk/src/operation/polygonize/Makefile.am
===================================================================
--- trunk/src/operation/polygonize/Makefile.am	2010-01-13 00:48:20 UTC (rev 2841)
+++ trunk/src/operation/polygonize/Makefile.am	2010-01-13 02:01:12 UTC (rev 2842)
@@ -1,3 +1,7 @@
+# $Id$
+#
+# This file is part of project GEOS (http://trac.osgeo.org/geos/) 
+#
 SUBDIRS = 
 
 noinst_LTLIBRARIES = liboppolygonize.la
@@ -2,14 +6,11 @@
 
-INCLUDES = -I$(top_srcdir)/source/headers 
+INCLUDES = -I$(top_srcdir)/include 
 
 liboppolygonize_la_SOURCES = \
-	PolygonizeDirectedEdge.cpp \
-	PolygonizeEdge.cpp \
-	PolygonizeGraph.cpp \
-	Polygonizer.cpp \
-	EdgeRing.cpp 
+    PolygonizeDirectedEdge.cpp \
+    PolygonizeEdge.cpp \
+    PolygonizeGraph.cpp \
+    Polygonizer.cpp \
+    EdgeRing.cpp 
 
 liboppolygonize_la_LIBADD = 
-
-
-


Property changes on: trunk/src/operation/polygonize/Makefile.am
___________________________________________________________________
Modified: svn:keywords
   - Author Date Id Revision
   + Id

Modified: trunk/src/operation/predicate/Makefile.am
===================================================================
--- trunk/src/operation/predicate/Makefile.am	2010-01-13 00:48:20 UTC (rev 2841)
+++ trunk/src/operation/predicate/Makefile.am	2010-01-13 02:01:12 UTC (rev 2842)
@@ -1,3 +1,7 @@
+# $Id$
+#
+# This file is part of project GEOS (http://trac.osgeo.org/geos/) 
+#
 #prefix=@prefix@
 #top_srcdir=@top_srcdir@
 
@@ -3,10 +7,10 @@
 noinst_LTLIBRARIES = liboppredicate.la
 
-INCLUDES = -I$(top_srcdir)/source/headers 
+INCLUDES = -I$(top_srcdir)/include 
 
 liboppredicate_la_SOURCES = \
-	RectangleIntersects.cpp \
-	RectangleContains.cpp \
-	SegmentIntersectionTester.cpp 
+    RectangleIntersects.cpp \
+    RectangleContains.cpp \
+    SegmentIntersectionTester.cpp 
 
 liboppredicate_la_LIBADD = 


Property changes on: trunk/src/operation/predicate/Makefile.am
___________________________________________________________________
Modified: svn:keywords
   - Author Date Id Revision
   + Id

Modified: trunk/src/operation/relate/Makefile.am
===================================================================
--- trunk/src/operation/relate/Makefile.am	2010-01-13 00:48:20 UTC (rev 2841)
+++ trunk/src/operation/relate/Makefile.am	2010-01-13 02:01:12 UTC (rev 2842)
@@ -1,3 +1,7 @@
+# $Id$
+#
+# This file is part of project GEOS (http://trac.osgeo.org/geos/) 
+#
 SUBDIRS = 
 
 noinst_LTLIBRARIES = liboprelate.la
@@ -2,16 +6,14 @@
 
-INCLUDES = -I$(top_srcdir)/source/headers 
+INCLUDES = -I$(top_srcdir)/include 
 
 liboprelate_la_SOURCES = \
-	EdgeEndBuilder.cpp \
-	EdgeEndBundle.cpp \
-	EdgeEndBundleStar.cpp \
-	RelateComputer.cpp \
-	RelateNode.cpp \
-	RelateNodeFactory.cpp \
-	RelateNodeGraph.cpp \
-	RelateOp.cpp 
+    EdgeEndBuilder.cpp \
+    EdgeEndBundle.cpp \
+    EdgeEndBundleStar.cpp \
+    RelateComputer.cpp \
+    RelateNode.cpp \
+    RelateNodeFactory.cpp \
+    RelateNodeGraph.cpp \
+    RelateOp.cpp 
 
 liboprelate_la_LIBADD = 
-
-


Property changes on: trunk/src/operation/relate/Makefile.am
___________________________________________________________________
Modified: svn:keywords
   - Author Date Id Revision
   + Id

Modified: trunk/src/operation/union/Makefile.am
===================================================================
--- trunk/src/operation/union/Makefile.am	2010-01-13 00:48:20 UTC (rev 2841)
+++ trunk/src/operation/union/Makefile.am	2010-01-13 02:01:12 UTC (rev 2842)
@@ -1,3 +1,7 @@
+# $Id$
+#
+# This file is part of project GEOS (http://trac.osgeo.org/geos/) 
+#
 SUBDIRS = 
 
 noinst_LTLIBRARIES = libopunion.la
@@ -2,9 +6,7 @@
 
-INCLUDES = -I$(top_srcdir)/source/headers 
+INCLUDES = -I$(top_srcdir)/include 
 
 libopunion_la_SOURCES = \
-	CascadedPolygonUnion.cpp 
+    CascadedPolygonUnion.cpp 
 
 libopunion_la_LIBADD = 
-
-


Property changes on: trunk/src/operation/union/Makefile.am
___________________________________________________________________
Added: svn:keywords
   + Id

Modified: trunk/src/operation/valid/Makefile.am
===================================================================
--- trunk/src/operation/valid/Makefile.am	2010-01-13 00:48:20 UTC (rev 2841)
+++ trunk/src/operation/valid/Makefile.am	2010-01-13 02:01:12 UTC (rev 2842)
@@ -1,3 +1,7 @@
+# $Id$
+#
+# This file is part of project GEOS (http://trac.osgeo.org/geos/) 
+#
 SUBDIRS = 
 
 noinst_LTLIBRARIES = libopvalid.la
@@ -2,3 +6,3 @@
 
-INCLUDES = -I$(top_srcdir)/source/headers 
+INCLUDES = -I$(top_srcdir)/include 
 
@@ -9,16 +13,15 @@
 #
 
 libopvalid_la_SOURCES = \
-	ConnectedInteriorTester.cpp \
-	ConsistentAreaTester.cpp \
-	IsValidOp.cpp \
-	QuadtreeNestedRingTester.cpp \
-	RepeatedPointTester.cpp \
-	SimpleNestedRingTester.cpp \
-	SweeplineNestedRingTester.cpp \
-	TopologyValidationError.cpp \
-	IndexedNestedRingTester.cpp \
-	IndexedNestedRingTester.h
+    ConnectedInteriorTester.cpp \
+    ConsistentAreaTester.cpp \
+    IsValidOp.cpp \
+    QuadtreeNestedRingTester.cpp \
+    RepeatedPointTester.cpp \
+    SimpleNestedRingTester.cpp \
+    SweeplineNestedRingTester.cpp \
+    TopologyValidationError.cpp \
+    IndexedNestedRingTester.cpp \
+    IndexedNestedRingTester.h
 
 libopvalid_la_LIBADD =
-


Property changes on: trunk/src/operation/valid/Makefile.am
___________________________________________________________________
Modified: svn:keywords
   - Author Date Id Revision
   + Id

Modified: trunk/src/planargraph/Makefile.am
===================================================================
--- trunk/src/planargraph/Makefile.am	2010-01-13 00:48:20 UTC (rev 2841)
+++ trunk/src/planargraph/Makefile.am	2010-01-13 02:01:12 UTC (rev 2842)
@@ -1,3 +1,7 @@
+# $Id$
+#
+# This file is part of project GEOS (http://trac.osgeo.org/geos/) 
+#
 SUBDIRS = 
 
 noinst_LTLIBRARIES = libplanargraph.la
@@ -2,13 +6,13 @@
 
-INCLUDES = -I$(top_srcdir)/source/headers 
+INCLUDES = -I$(top_srcdir)/include 
 
 libplanargraph_la_SOURCES = \
-	DirectedEdge.cpp \
-	DirectedEdgeStar.cpp \
-	Edge.cpp \
-	Node.cpp \
-	NodeMap.cpp \
-	PlanarGraph.cpp \
-	Subgraph.cpp \
-	algorithm/ConnectedSubgraphFinder.cpp
+    DirectedEdge.cpp \
+    DirectedEdgeStar.cpp \
+    Edge.cpp \
+    Node.cpp \
+    NodeMap.cpp \
+    PlanarGraph.cpp \
+    Subgraph.cpp \
+    algorithm/ConnectedSubgraphFinder.cpp
 


Property changes on: trunk/src/planargraph/Makefile.am
___________________________________________________________________
Modified: svn:keywords
   - Author Date Id Revision
   + Id

Modified: trunk/src/precision/Makefile.am
===================================================================
--- trunk/src/precision/Makefile.am	2010-01-13 00:48:20 UTC (rev 2841)
+++ trunk/src/precision/Makefile.am	2010-01-13 02:01:12 UTC (rev 2842)
@@ -1,3 +1,7 @@
+# $Id$
+#
+# This file is part of project GEOS (http://trac.osgeo.org/geos/) 
+#
 SUBDIRS = 
 
 noinst_LTLIBRARIES = libprecision.la
@@ -2,3 +6,3 @@
 
-INCLUDES = -I$(top_srcdir)/source/headers 
+INCLUDES = -I$(top_srcdir)/include 
 


Property changes on: trunk/src/precision/Makefile.am
___________________________________________________________________
Modified: svn:keywords
   - Author Date Id Revision
   + Id

Modified: trunk/src/simplify/Makefile.am
===================================================================
--- trunk/src/simplify/Makefile.am	2010-01-13 00:48:20 UTC (rev 2841)
+++ trunk/src/simplify/Makefile.am	2010-01-13 02:01:12 UTC (rev 2842)
@@ -1,3 +1,7 @@
+# $Id$
+#
+# This file is part of project GEOS (http://trac.osgeo.org/geos/) 
+#
 SUBDIRS = 
 
 noinst_LTLIBRARIES = libsimplify.la
@@ -2,18 +6,14 @@
 
-INCLUDES = -I$(top_srcdir)/source/headers 
+INCLUDES = -I$(top_srcdir)/include 
 
-
 libsimplify_la_SOURCES = \
-	DouglasPeuckerLineSimplifier.cpp \
-	DouglasPeuckerSimplifier.cpp \
-	LineSegmentIndex.cpp \
-	TaggedLineSegment.cpp \
-	TaggedLineString.cpp \
-	TaggedLineStringSimplifier.cpp \
-	TaggedLinesSimplifier.cpp \
-	TopologyPreservingSimplifier.cpp
+    DouglasPeuckerLineSimplifier.cpp \
+    DouglasPeuckerSimplifier.cpp \
+    LineSegmentIndex.cpp \
+    TaggedLineSegment.cpp \
+    TaggedLineString.cpp \
+    TaggedLineStringSimplifier.cpp \
+    TaggedLinesSimplifier.cpp \
+    TopologyPreservingSimplifier.cpp
 
-
 libsimplify_la_LIBADD = 
-
-


Property changes on: trunk/src/simplify/Makefile.am
___________________________________________________________________
Modified: svn:keywords
   - Author Date Id Revision
   + Id

Modified: trunk/src/util/Makefile.am
===================================================================
--- trunk/src/util/Makefile.am	2010-01-13 00:48:20 UTC (rev 2841)
+++ trunk/src/util/Makefile.am	2010-01-13 02:01:12 UTC (rev 2842)
@@ -1,3 +1,7 @@
+# $Id$
+#
+# This file is part of project GEOS (http://trac.osgeo.org/geos/) 
+#
 SUBDIRS = 
 
 noinst_LTLIBRARIES = libutil.la
@@ -2,3 +6,3 @@
 
-INCLUDES = -I$(top_srcdir)/source/headers 
+INCLUDES = -I$(top_srcdir)/include 
 
@@ -11,5 +15,3 @@
 	Profiler.cpp 
 
 libutil_la_LIBADD = 
-
-


Property changes on: trunk/src/util/Makefile.am
___________________________________________________________________
Modified: svn:keywords
   - Author Date Id Revision
   + Id



More information about the geos-commits mailing list