everything in src for packaging purposes

This commit is contained in:
gwen
2012-07-13 09:42:14 +02:00
parent 5e8c2d2ef0
commit 9aa9d9780a
26 changed files with 4496 additions and 0 deletions

18
report/build/Makefile Normal file
View File

@ -0,0 +1,18 @@
SRC=$(wildcard *.txt)
HTMLFRAGMENT=$(addsuffix .html, $(basename $(SRC)))
.SUFFIXES:
.PHONY: all clean
all: html
html: $(HTMLFRAGMENT)
%.html: %.txt
./rst2html.py --stylesheet ./style.css $< > $@
clean:
rm -f *.html
rm -f *.txt