Mercurial > p > roundup > code
view doc/Makefile @ 1836:94e430ad4fdb
make the RDBMS common backend and the SQLite and MYsql backend create...
...and drop indexes for the basic columns - index multilinks, index id and
retired columns of all class tables.
| author | Anthony Baxter <anthonybaxter@users.sourceforge.net> |
|---|---|
| date | Tue, 07 Oct 2003 07:17:54 +0000 |
| parents | 0bdcfc2a47ac |
| children | 06f5b36b201b |
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 \ 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}
