Rev | Line | |
---|
[2696] | 1 | xml2rfc = "../../../xml2rfc/xml2rfc.tcl"
|
---|
| 2 | saxpath = "$(HOME)/java/saxon-8-9-j/saxon8.jar"
|
---|
| 3 | saxon = java -classpath $(saxpath) net.sf.saxon.Transform -novw -l
|
---|
| 4 |
|
---|
| 5 | stylesheet = ../../myxml2rfc.xslt
|
---|
| 6 | reduction = ../../../rfc2629xslt/clean-for-DTD.xslt
|
---|
| 7 |
|
---|
| 8 | all: \
|
---|
| 9 | rfc7237.abdiff.txt \
|
---|
| 10 | rfc7237.diff.html
|
---|
| 11 |
|
---|
| 12 | draft-ietf-httpbis-method-registrations.redxml: ../draft-ietf-httpbis-method-registrations.xml
|
---|
| 13 | $(saxon) $< $(reduction) > $@
|
---|
| 14 |
|
---|
| 15 | rfc7237-to-be.redxml: rfc7237-to-be.xml
|
---|
| 16 | cp $< $@
|
---|
| 17 |
|
---|
| 18 | %.unpg.txt: %.redxml
|
---|
| 19 | tclsh $(xml2rfc) xml2rfc $< $@
|
---|
| 20 |
|
---|
| 21 | rfc7237.abdiff.txt: draft-ietf-httpbis-method-registrations.unpg.txt rfc7237-to-be.unpg.txt
|
---|
| 22 | rfcdiff --abdiff draft-ietf-httpbis-method-registrations.unpg.txt rfc7237-to-be.unpg.txt > $@
|
---|
| 23 |
|
---|
| 24 | rfc7237.diff.html: draft-ietf-httpbis-method-registrations.unpg.txt rfc7237-to-be.unpg.txt
|
---|
| 25 | rfcdiff --stdout draft-ietf-httpbis-method-registrations.unpg.txt rfc7237-to-be.unpg.txt > $@
|
---|
| 26 |
|
---|
Note: See
TracBrowser
for help on using the repository browser.