Last change
on this file since 1740 was
1305,
checked in by julian.reschke@…, 12 years ago
|
add RFC6266 to the specs folder, add link to published spec in "latest" draft, regen HTML
|
-
Property svn:eol-style set to
native
|
File size:
609 bytes
|
Rev | Line | |
---|
[12] | 1 | xml2rfc = "$(HOME)/bin/xml2rfc-1.33pre4/xml2rfc.tcl" |
---|
| 2 | saxpath = "$(HOME)/java/saxon-8-9-j/saxon8.jar" |
---|
| 3 | saxon = java -classpath $(saxpath) net.sf.saxon.Transform -novw |
---|
| 4 | |
---|
| 5 | stylesheet = ../myxml2rfc.xslt |
---|
| 6 | reduction = ../../rfc2629xslt/clean-for-DTD.xslt |
---|
| 7 | |
---|
[598] | 8 | TARGETS = rfc2145.html rfc2616.html rfc2617.html rfc2817.html rfc2818.html rfc2965.html rfc4234.html rfc5234.html \ |
---|
[1305] | 9 | rfc2616-symrefs.html rfc6266.html |
---|
[12] | 10 | |
---|
| 11 | all: $(TARGETS) |
---|
| 12 | |
---|
| 13 | clean: |
---|
| 14 | rm -f $(TARGETS) |
---|
| 15 | |
---|
| 16 | %.html: %.xml $(stylesheet) |
---|
| 17 | $(saxon) $< $(stylesheet) > $@ |
---|
| 18 | |
---|
| 19 | %.redxml: %.xml $(reduction) |
---|
| 20 | $(saxon) $< $(reduction) > $@ |
---|
| 21 | |
---|
| 22 | %.txt: %.redxml |
---|
| 23 | $(xml2rfc) $< $@ |
---|
| 24 | |
---|
Note: See
TracBrowser
for help on using the repository browser.