|
Revision 11103, 1.1 kB
(checked in by dave, 4 months ago)
|
|
rebuild html
|
| 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 | |
|---|
| 6 | BEPS= \ |
|---|
| 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_0016.html \ |
|---|
| 21 | bep_0017.html \ |
|---|
| 22 | bep_0018.html \ |
|---|
| 23 | bep_0019.html \ |
|---|
| 24 | bep_0020.html \ |
|---|
| 25 | bep_0021.html \ |
|---|
| 26 | bep_0022.html \ |
|---|
| 27 | bep_0023.html \ |
|---|
| 28 | bep_0024.html \ |
|---|
| 29 | bep_0025.html \ |
|---|
| 30 | bep_0026.html \ |
|---|
| 31 | bep_1000.html \ |
|---|
| 32 | |
|---|
| 33 | all: $(BEPS) |
|---|
| 34 | |
|---|
| 35 | %.html:%.rst_post |
|---|
| 36 | 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 |
|---|
| 37 | |
|---|
| 38 | %.rst_post: %.rst |
|---|
| 39 | python postprocess.py $? > $@ |
|---|
| 40 | |
|---|
| 41 | #%.html:%.rst |
|---|
| 42 | # rstpep2html.py --template=template.txt --cloak-email-addresses --link-stylesheet --stylesheet=../css/bep.css --no-toc-backlinks $? >$@ --traceback |
|---|
| 43 | |
|---|
| 44 | |
|---|