Last change
on this file since 1793 was
282,
checked in by julian.reschke@…, 15 years ago
|
Add separate draft containing initial registrations for methods not defined in RFC2616 or HTTPbis (related to #72)
|
-
Property svn:executable set to
*
|
File size:
776 bytes
|
Line | |
---|
1 | xml2rfc = "$(HOME)/bin/xml2rfc-1.33/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 = ../../draft-ietf-httpbis/myxml2rfc.xslt
|
---|
6 | reduction = ../../rfc2629xslt/clean-for-DTD.xslt
|
---|
7 |
|
---|
8 | TARGETS = draft-ietf-httpbis-method-registrations.html \
|
---|
9 | draft-ietf-httpbis-method-registrations.redxml \
|
---|
10 | draft-ietf-httpbis-method-registrations.txt
|
---|
11 |
|
---|
12 | all: $(TARGETS)
|
---|
13 |
|
---|
14 | clean:
|
---|
15 | rm -f $(TARGETS)
|
---|
16 |
|
---|
17 | %.html: %.xml $(stylesheet)
|
---|
18 | $(saxon) $< $(stylesheet) > $@
|
---|
19 |
|
---|
20 | %.redxml: %.xml $(reduction)
|
---|
21 | $(saxon) $< $(reduction) > $@
|
---|
22 |
|
---|
23 | %.txt: %.redxml
|
---|
24 | $(xml2rfc) $< $@
|
---|
25 |
|
---|
26 | %.xhtml: %.xml ../../rfc2629xslt/rfc2629toXHTML.xslt
|
---|
27 | $(saxon) $< ../../rfc2629xslt/rfc2629toXHTML.xslt > $@
|
---|
Note: See
TracBrowser
for help on using the repository browser.