2008-10-17 19:31:20 +02:00
|
|
|
# this makefile assumes that you have docutils and rst2pdf installed
|
|
|
|
|
2008-10-17 05:23:30 +02:00
|
|
|
WEB_PATH = ~/Documents/rasterbar/web/products/libtorrent
|
|
|
|
DOCUTILS = ~/docutils
|
|
|
|
|
2008-10-17 19:31:20 +02:00
|
|
|
TARGETS = index \
|
|
|
|
udp_tracker_protocol \
|
|
|
|
client_test \
|
|
|
|
manual \
|
|
|
|
building \
|
|
|
|
features \
|
|
|
|
examples \
|
|
|
|
extension_protocol \
|
2008-11-19 19:32:36 +01:00
|
|
|
make_torrent \
|
2008-10-17 19:31:20 +02:00
|
|
|
dht_extensions \
|
|
|
|
libtorrent_plugins \
|
|
|
|
python_binding \
|
|
|
|
projects
|
|
|
|
|
|
|
|
html: $(TARGETS:=.html)
|
|
|
|
|
|
|
|
pdf: $(TARGETS:=.pdf)
|
|
|
|
|
|
|
|
all: html
|
|
|
|
|
|
|
|
%.pdf:%.rst
|
2008-10-22 02:55:51 +02:00
|
|
|
rst2pdf $? -o $@ --stylesheets stylesheet
|
2008-10-17 05:23:30 +02:00
|
|
|
|
|
|
|
%.html:%.rst
|
|
|
|
python $(DOCUTILS)/tools/rst2html.py --template=template.txt --stylesheet-path=style.css --link-stylesheet --no-toc-backlinks $? > $@
|
|
|
|
cp $@ $(WEB_PATH)/$@
|
|
|
|
|
|
|
|
clean:
|
2008-10-17 19:31:20 +02:00
|
|
|
rm -f $(TARGETS:=.html) $(TARGETS:=.pdf)
|
2008-10-17 05:23:30 +02:00
|
|
|
|