postgis/regress/Makefile
Sandro Santilli 2d4f6d2188 Added simplify() test unit
git-svn-id: http://svn.osgeo.org/postgis/trunk@2270 b70326c6-7e19-0410-871a-916f4a2858ee
2006-01-09 15:09:42 +00:00

24 lines
351 B
Makefile

TMPDIR?=/tmp
include ../Makefile.config
TESTS=regress regress_index lwgeom_regress regress_lrs removepoint setpoint simplify
ifeq ($(USE_GEOS),1)
TESTS += regress_ogc regress_bdpoly
endif
ifeq ($(USE_PROJ),1)
TESTS += regress_proj
endif
all: test cleanup
test:
@./run_test $(TESTS)
cleanup:
@sleep 1; dropdb postgis_reg > /dev/null
clean: