source: draft-ietf-httpbis/orig/Makefile @ 1657

Last change on this file since 1657 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
Line 
1xml2rfc = "$(HOME)/bin/xml2rfc-1.33pre4/xml2rfc.tcl"
2saxpath = "$(HOME)/java/saxon-8-9-j/saxon8.jar"
3saxon = java -classpath $(saxpath) net.sf.saxon.Transform -novw
4
5stylesheet = ../myxml2rfc.xslt
6reduction  = ../../rfc2629xslt/clean-for-DTD.xslt
7
8TARGETS = rfc2145.html rfc2616.html rfc2617.html rfc2817.html rfc2818.html rfc2965.html rfc4234.html rfc5234.html \
9          rfc2616-symrefs.html rfc6266.html
10
11all: $(TARGETS)
12
13clean:
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.