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

Last change on this file since 698 was 598, checked in by julian.reschke@…, 14 years ago

fix Makefile, add RFC 2817/2818, re-gen HTML

  • Property svn:eol-style set to native
File size: 596 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
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.