root / dotorg / v9 / html / beps / makefile

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

first revision of bep for .btsearch

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_0018.html \
22        bep_1000.html \
23
24all:    $(BEPS)
25
26%.html:%.rst_post
27        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
28
29%.rst_post: %.rst
30        python postprocess.py $? > $@
31
32#%.html:%.rst
33#       rstpep2html.py --template=template.txt --cloak-email-addresses --link-stylesheet --stylesheet=../css/bep.css --no-toc-backlinks $? >$@ --traceback
34
35
Note: See TracBrowser for help on using the browser.