Changeset 45
- Timestamp:
- 01/17/08 16:34:01
- Files:
-
- spatialindex/trunk/regressiontest/tprtree/Makefile.am (modified) (1 diff)
- spatialindex/trunk/regressiontest/tprtree/Makefile.in (modified) (2 diffs)
- spatialindex/trunk/src/mvrtree/Makefile.am (modified) (1 diff)
- spatialindex/trunk/src/mvrtree/Makefile.in (modified) (2 diffs)
- spatialindex/trunk/src/rtree/Makefile.am (modified) (1 diff)
- spatialindex/trunk/src/rtree/Makefile.in (modified) (2 diffs)
- spatialindex/trunk/src/spatialindex/Makefile.am (modified) (1 diff)
- spatialindex/trunk/src/spatialindex/Makefile.in (modified) (2 diffs)
- spatialindex/trunk/src/storagemanager/Makefile.am (modified) (1 diff)
- spatialindex/trunk/src/storagemanager/Makefile.in (modified) (2 diffs)
- spatialindex/trunk/src/tprtree/Makefile.am (modified) (1 diff)
- spatialindex/trunk/src/tprtree/Makefile.in (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
spatialindex/trunk/regressiontest/tprtree/Makefile.am
r2 r45 2 2 noinst_PROGRAMS = Generator Exhaustive TPRTreeLoad TPRTreeQuery 3 3 INCLUDES = -I../../include 4 Generator_SOURCES = RandomGenerator.cc Generator.cc 4 Generator_SOURCES = RandomGenerator.cc Generator.cc RandomGenerator.h 5 5 Generator_LDADD = ../../libspatialindex.la 6 6 Exhaustive_SOURCES = Exhaustive.cc spatialindex/trunk/regressiontest/tprtree/Makefile.in
r44 r45 67 67 CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ 68 68 --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ 69 $(LDFLAGS) -o $@ 70 COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ 71 $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) 72 LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ 73 --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ 74 $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) 75 CCLD = $(CC) 76 LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ 77 --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ 69 78 $(LDFLAGS) -o $@ 70 79 SOURCES = $(Exhaustive_SOURCES) $(Generator_SOURCES) \ … … 181 190 top_srcdir = @top_srcdir@ 182 191 INCLUDES = -I../../include 183 Generator_SOURCES = RandomGenerator.cc Generator.cc 192 Generator_SOURCES = RandomGenerator.cc Generator.cc RandomGenerator.h 184 193 Generator_LDADD = ../../libspatialindex.la 185 194 Exhaustive_SOURCES = Exhaustive.cc spatialindex/trunk/src/mvrtree/Makefile.am
r2 r45 2 2 noinst_LTLIBRARIES = libmvrtree.la 3 3 INCLUDES = -I../../include 4 libmvrtree_la_SOURCES = Index.cc Leaf.cc Node.cc MVRTree.cc Statistics.cc 4 libmvrtree_la_SOURCES = Index.cc Leaf.cc Node.cc MVRTree.cc Statistics.cc Index.h Leaf.h MVRTree.h Node.h PointerPoolNode.h Statistics.h spatialindex/trunk/src/mvrtree/Makefile.in
r44 r45 57 57 CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ 58 58 --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ 59 $(LDFLAGS) -o $@ 60 COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ 61 $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) 62 LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ 63 --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ 64 $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) 65 CCLD = $(CC) 66 LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ 67 --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ 59 68 $(LDFLAGS) -o $@ 60 69 SOURCES = $(libmvrtree_la_SOURCES) … … 170 179 noinst_LTLIBRARIES = libmvrtree.la 171 180 INCLUDES = -I../../include 172 libmvrtree_la_SOURCES = Index.cc Leaf.cc Node.cc MVRTree.cc Statistics.cc 181 libmvrtree_la_SOURCES = Index.cc Leaf.cc Node.cc MVRTree.cc Statistics.cc Index.h Leaf.h MVRTree.h Node.h PointerPoolNode.h Statistics.h 173 182 all: all-am 174 183 spatialindex/trunk/src/rtree/Makefile.am
r2 r45 2 2 noinst_LTLIBRARIES = librtree.la 3 3 INCLUDES = -I../../include 4 librtree_la_SOURCES = BulkLoader.cc Index.cc Leaf.cc Node.cc RTree.cc Statistics.cc 4 librtree_la_SOURCES = BulkLoader.cc Index.cc Leaf.cc Node.cc RTree.cc Statistics.cc BulkLoader.h Index.h Leaf.h Node.h PointerPoolNode.h RTree.h Statistics.h spatialindex/trunk/src/rtree/Makefile.in
r44 r45 57 57 CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ 58 58 --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ 59 $(LDFLAGS) -o $@ 60 COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ 61 $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) 62 LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ 63 --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ 64 $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) 65 CCLD = $(CC) 66 LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ 67 --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ 59 68 $(LDFLAGS) -o $@ 60 69 SOURCES = $(librtree_la_SOURCES) … … 170 179 noinst_LTLIBRARIES = librtree.la 171 180 INCLUDES = -I../../include 172 librtree_la_SOURCES = BulkLoader.cc Index.cc Leaf.cc Node.cc RTree.cc Statistics.cc 181 librtree_la_SOURCES = BulkLoader.cc Index.cc Leaf.cc Node.cc RTree.cc Statistics.cc BulkLoader.h Index.h Leaf.h Node.h PointerPoolNode.h RTree.h Statistics.h 173 182 all: all-am 174 183 spatialindex/trunk/src/spatialindex/Makefile.am
r33 r45 2 2 noinst_LTLIBRARIES = liblibrary.la 3 3 INCLUDES = -I../../include 4 liblibrary_la_SOURCES = Point.cc Region.cc LineSegment.cc MovingPoint.cc MovingRegion.cc TimePoint.cc TimeRegion.cc SpatialIndexImpl.cc 4 liblibrary_la_SOURCES = Point.cc Region.cc LineSegment.cc MovingPoint.cc MovingRegion.cc TimePoint.cc TimeRegion.cc SpatialIndexImpl.cc SpatialIndexImpl.h spatialindex/trunk/src/spatialindex/Makefile.in
r44 r45 58 58 CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ 59 59 --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ 60 $(LDFLAGS) -o $@ 61 COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ 62 $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) 63 LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ 64 --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ 65 $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) 66 CCLD = $(CC) 67 LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ 68 --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ 60 69 $(LDFLAGS) -o $@ 61 70 SOURCES = $(liblibrary_la_SOURCES) … … 171 180 noinst_LTLIBRARIES = liblibrary.la 172 181 INCLUDES = -I../../include 173 liblibrary_la_SOURCES = Point.cc Region.cc LineSegment.cc MovingPoint.cc MovingRegion.cc TimePoint.cc TimeRegion.cc SpatialIndexImpl.cc 182 liblibrary_la_SOURCES = Point.cc Region.cc LineSegment.cc MovingPoint.cc MovingRegion.cc TimePoint.cc TimeRegion.cc SpatialIndexImpl.cc SpatialIndexImpl.h 174 183 all: all-am 175 184 spatialindex/trunk/src/storagemanager/Makefile.am
r2 r45 2 2 noinst_LTLIBRARIES = libstoragemanager.la 3 3 INCLUDES = -I../../include 4 libstoragemanager_la_SOURCES = Buffer. cc DiskStorageManager.cc MemoryStorageManager.cc RandomEvictionsBuffer.cc4 libstoragemanager_la_SOURCES = Buffer.h Buffer.cc DiskStorageManager.cc MemoryStorageManager.cc RandomEvictionsBuffer.cc DiskStorageManager.h MemoryStorageManager.h RandomEvictionsBuffer.h spatialindex/trunk/src/storagemanager/Makefile.in
r44 r45 57 57 CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ 58 58 --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ 59 $(LDFLAGS) -o $@ 60 COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ 61 $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) 62 LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ 63 --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ 64 $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) 65 CCLD = $(CC) 66 LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ 67 --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ 59 68 $(LDFLAGS) -o $@ 60 69 SOURCES = $(libstoragemanager_la_SOURCES) … … 170 179 noinst_LTLIBRARIES = libstoragemanager.la 171 180 INCLUDES = -I../../include 172 libstoragemanager_la_SOURCES = Buffer. cc DiskStorageManager.cc MemoryStorageManager.cc RandomEvictionsBuffer.cc181 libstoragemanager_la_SOURCES = Buffer.h Buffer.cc DiskStorageManager.cc MemoryStorageManager.cc RandomEvictionsBuffer.cc DiskStorageManager.h MemoryStorageManager.h RandomEvictionsBuffer.h 173 182 all: all-am 174 183 spatialindex/trunk/src/tprtree/Makefile.am
r2 r45 2 2 noinst_LTLIBRARIES = libtprtree.la 3 3 INCLUDES = -I../../include 4 libtprtree_la_SOURCES = Index.cc Leaf.cc Node.cc TPRTree.cc Statistics.cc 4 libtprtree_la_SOURCES = Index.cc Leaf.cc Node.cc TPRTree.cc Statistics.cc Leaf.h Index.h Node.h PointerPoolNode.h Statistics.h TPRTree.h spatialindex/trunk/src/tprtree/Makefile.in
r44 r45 57 57 CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ 58 58 --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ 59 $(LDFLAGS) -o $@ 60 COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ 61 $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) 62 LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ 63 --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ 64 $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) 65 CCLD = $(CC) 66 LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ 67 --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ 59 68 $(LDFLAGS) -o $@ 60 69 SOURCES = $(libtprtree_la_SOURCES) … … 170 179 noinst_LTLIBRARIES = libtprtree.la 171 180 INCLUDES = -I../../include 172 libtprtree_la_SOURCES = Index.cc Leaf.cc Node.cc TPRTree.cc Statistics.cc 181 libtprtree_la_SOURCES = Index.cc Leaf.cc Node.cc TPRTree.cc Statistics.cc Leaf.h Index.h Node.h PointerPoolNode.h Statistics.h TPRTree.h 173 182 all: all-am 174 183
