projects
/
tiramisu.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
we can pickle object
[tiramisu.git]
/
report
/
build
/
Makefile
1
SRC=$(wildcard *.txt)
2
HTMLFRAGMENT=$(addsuffix .html, $(basename $(SRC)))
3
4
.SUFFIXES:
5
6
.PHONY: all clean
7
8
all: html
9
10
html: $(HTMLFRAGMENT)
11
12
%.html: %.txt
13
./rst2html.py --stylesheet ./style.css $< > $@
14
15
clean:
16
rm -f *.html
17
rm -f *.txt
18