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
|
|
|
|
|
2008-10-17 19:31:20 +02:00
|
|
|
TARGETS = index \
|
|
|
|
udp_tracker_protocol \
|
|
|
|
client_test \
|
|
|
|
manual \
|
|
|
|
building \
|
|
|
|
features \
|
2010-02-18 21:01:23 +01:00
|
|
|
contributing\
|
2008-10-17 19:31:20 +02:00
|
|
|
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 \
|
2009-02-09 04:48:27 +01:00
|
|
|
projects \
|
2009-05-25 09:11:09 +02:00
|
|
|
running_tests \
|
2010-11-29 02:33:05 +01:00
|
|
|
utp \
|
2009-05-25 09:11:09 +02:00
|
|
|
tuning
|
2008-10-17 19:31:20 +02:00
|
|
|
|
2009-02-09 04:48:27 +01:00
|
|
|
FIGURES = read_disk_buffers write_disk_buffers
|
2008-10-17 19:31:20 +02:00
|
|
|
|
2009-02-09 04:48:27 +01:00
|
|
|
html: $(TARGETS:=.html) $(FIGURES:=.png)
|
|
|
|
|
|
|
|
pdf: $(TARGETS:=.pdf) $(FIGURES:=.eps)
|
2008-10-17 19:31:20 +02:00
|
|
|
|
|
|
|
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
|
2009-08-02 22:09:32 +02:00
|
|
|
rst2html.py --template=template.txt --stylesheet-path=style.css --link-stylesheet --no-toc-backlinks $? > $@
|
2008-10-17 05:23:30 +02:00
|
|
|
cp $@ $(WEB_PATH)/$@
|
|
|
|
|
2009-02-09 04:48:27 +01:00
|
|
|
%.eps:%.dot
|
|
|
|
dot -Teps $? >$@
|
|
|
|
cp $@ $(WEB_PATH)/$@
|
|
|
|
|
2008-10-17 05:23:30 +02:00
|
|
|
clean:
|
2008-10-17 19:31:20 +02:00
|
|
|
rm -f $(TARGETS:=.html) $(TARGETS:=.pdf)
|
2008-10-17 05:23:30 +02:00
|
|
|
|