Mercurial > p > roundup > code
view doc/Makefile @ 2118:917826e3fb54
In the classes method of HTMLDatabase, the variable 'm' was undefined.
I modified the unused list 'r' to be 'm' so now the code appears to function
correctly.
| author | Brian Kelley <wc2so1@users.sourceforge.net> |
|---|---|
| date | Thu, 25 Mar 2004 16:25:15 +0000 |
| parents | a291bf753037 |
| children | f01befe8a7fe |
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 admin_guide.txt \ postgresql.txt COMPILED := $(SOURCE:.txt=.html) all: ${COMPILED} %.html: %.txt ${STXTOHTML} --report=warning -d $< $@ clean: rm -f ${COMPILED}
