root / dotorg / v5 / html / beps / makefile

Revision 10761, 0.9 kB (checked in by dave, 11 months ago)

Commit generated index.

Line 
1
2# Be sure to commit changes to .rst files before building the html and then recommit with the updated html.
3# Otherwise, the generated .html will have the svn revision number of the previous change rather than the
4# current changes.
5
6BEPS= \
7        bep_0000.html \
8        bep_0001.html \
9        bep_0002.html \
10        bep_0003.html \
11        bep_0004.html \
12        bep_0005.html \
13        bep_0006.html \
14        bep_0007.html \
15        bep_0008.html \
16        bep_0009.html \
17        bep_0010.html \
18        bep_0012.html \
19        bep_0015.html \
20        bep_0017.html \
21        bep_1000.html \
22
23all:    $(BEPS)
24
25%.html:%.rst_post
26        rstbep2html.py --template=template.txt --pep-base-url=http://www.bittorrent.org/beps/ --cloak-email-addresses --link-stylesheet --stylesheet=../css/bep.css --no-toc-backlinks $? >$@ --traceback
27
28%.rst_post: %.rst
29        python postprocess.py $? > $@
30
31#%.html:%.rst
32#       rstpep2html.py --template=template.txt --cloak-email-addresses --link-stylesheet --stylesheet=../css/bep.css --no-toc-backlinks $? >$@ --traceback
33
34
Note: See TracBrowser for help on using the browser.