first revision

This commit is contained in:
gwen
2012-05-13 20:48:51 +02:00
commit 8b16814ab4
86 changed files with 10427 additions and 0 deletions

25
doc/Makefile Normal file
View File

@ -0,0 +1,25 @@
SRC=$(wildcard *.txt)
HTMLFRAGMENT=$(addsuffix .html, $(basename $(SRC)))
.SUFFIXES:
.PHONY: all clean
all: html code
# make -C ./build/code all
# make -C ./build/test all
# make -C ./build all
html: $(HTMLFRAGMENT)
%.html: %.txt
./rst2html.py --stylesheet ./build/style.css $< > ./build/$@
code:
./code2html
clean:
make -C ./build clean
make -C ./pydoc/ clean
# make -C ./build/test clean