Documentation converted to reST

I had to drop the Japanese doc, but I'd be happy to restore it in reST format.
This commit is contained in:
Daniele Varrazzo
2012-11-11 01:18:04 +00:00
parent 8bd08c4f73
commit b3a86e3fee
8 changed files with 374 additions and 1012 deletions

16
doc/Makefile Normal file
View File

@ -0,0 +1,16 @@
RSTCSS = $(shell python -c 'import docutils.writers.html4css1 as m; print m.Writer.default_stylesheet_path')
RSTOPTS = --stylesheet-path=style.css,$(RSTCSS) --initial-header-level=2
HTML = $(patsubst %.rst,%.html,$(wildcard *.rst))
.PHONY: clean
all : html
html : $(HTML)
%.html: %.rst style.css
rst2html $(RSTOPTS) $< $@
clean:
rm -f $(HTML)