Fixed Makefile for jts tests, commented debug options better

git-svn-id: http://svn.osgeo.org/postgis/trunk@2554 b70326c6-7e19-0410-871a-916f4a2858ee
This commit is contained in:
Markus Schaber 2006-12-18 12:55:42 +00:00
parent 40005b8267
commit d7ae3a8bd7

View file

@ -82,9 +82,12 @@ PGPASS?=guess
PGURL?=//$(PGHOST):$(PGPORT)/$(PGDATABASE)
# Where to put the output from regression tests. If you want to have it on
# stdout, set TESTOUT to the empty string. Be careful - this will be deleted
# by "make clean".
# stdout, set TESTRD to the empty string. If you want to have it in another
# file, set TESTOUTPUT to the file path.
# Be careful - that file will be deleted by "make clean".
TESTOUTPUT?=test.log
# Output redirect for tests
TESTRD?= >>$(TESTOUTPUT)
### Config variable section ends ###
@ -122,8 +125,6 @@ VERSION=$(REL_MAJOR_VERSION).$(REL_MINOR_VERSION).$(REL_MICRO_VERSION)
VERSIONPATH=$(BUILD)/org/postgis
VERSIONTARGET=$(VERSIONPATH)/version.properties
# Output redirect for tests
TESTRD?= >>$(TESTOUTPUT)
# Preliminary jts support - not stable yet!
JTSDIR=jtssrc
@ -137,7 +138,7 @@ SRC = $(SRCDIR)/org/postgis/*.java $(SRCDIR)/org/postgis/*/*.java $(SRCDIR)/exam
STUBSRC = $(STUBDIR)/org/postgresql/*.java
JTSSRC = $(JTSDIR)/org/postgis/jts/*.java
JTSSRC = $(JTSDIR)/org/postgis/jts/*.java $(JTSDIR)/examples/*.java
# Now the makefile targets that do the work: