To get this branch, use: 
bzr branch
http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar
1
2
3
4
5
6
7
8
 
 | 
%.html: %.txt
	rest2html $^ > $@.tmp && mv $@.tmp $@
all: $(addsuffix .html,$(basename $(wildcard *.txt)))
upload: all
	(echo 'cd www/doc'; ls *html | sed -e 's/^/put /') | sftp -b /dev/fd/0 bazng@escudero.ubuntu.com
 
 |