To get this branch, use:
bzr branch
http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar
1
2
3
4
5
6
7
8
9
|
%.html: %.txt
rest2html $^ > $@.tmp && mv $@.tmp $@
all: $(addsuffix .html,$(basename $(wildcard *.txt)))
upload: all
rsync -av *html escudero.ubuntu.com:/srv/www.bazaar-ng.org/www/doc/
|