Mercurial > p > roundup > code
view doc/Makefile @ 1873:f63aa57386b0
Backend improvements.
- using Zope3's test runner now, allowing GC checks, nicer controls and
coverage analysis
- all RDMBS backends now have indexes on several columns
- added testing of schema mutation, fixed rdbms backends handling of a
couple of cases
- !BETA! added postgresql backend, needs work !BETA!
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Sat, 25 Oct 2003 22:53:26 +0000 |
| parents | 06f5b36b201b |
| children | 3ffb7b56172a |
line wrap: on
line source
PYTHON = /usr/bin/python2 STXTOHTML = rst2html SOURCE = announcement.txt customizing.txt developers.txt FAQ.txt features.txt \ glossary.txt implementation.txt index.txt design.txt mysql.txt \ installation.txt upgrading.txt user_guide.txt maintenance.txt COMPILED := $(SOURCE:.txt=.html) all: ${COMPILED} %.html: %.txt ${STXTOHTML} --report=warning -d $< $@ clean: rm -f ${COMPILED}
