premiere-libtorrent/docs/makefile

43 lines
811 B
Makefile
Raw Normal View History

# this makefile assumes that you have docutils and rst2pdf installed
WEB_PATH = ~/Documents/rasterbar/web/products/libtorrent
TARGETS = index \
udp_tracker_protocol \
client_test \
manual \
building \
features \
examples \
extension_protocol \
make_torrent \
dht_extensions \
libtorrent_plugins \
python_binding \
2009-02-09 04:48:27 +01:00
projects \
running_tests \
tuning
2009-02-09 04:48:27 +01:00
FIGURES = read_disk_buffers write_disk_buffers
2009-02-09 04:48:27 +01:00
html: $(TARGETS:=.html) $(FIGURES:=.png)
pdf: $(TARGETS:=.pdf) $(FIGURES:=.eps)
all: html
%.pdf:%.rst
rst2pdf $? -o $@ --stylesheets stylesheet
%.html:%.rst
2009-08-02 22:09:32 +02:00
rst2html.py --template=template.txt --stylesheet-path=style.css --link-stylesheet --no-toc-backlinks $? > $@
cp $@ $(WEB_PATH)/$@
2009-02-09 04:48:27 +01:00
%.eps:%.dot
dot -Teps $? >$@
cp $@ $(WEB_PATH)/$@
clean:
rm -f $(TARGETS:=.html) $(TARGETS:=.pdf)