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

Last change on this file since 127 was 12, checked in by fielding@…, 15 years ago

And one file to make them all (assuming you have saxon installed).

  • Property svn:eol-style set to native
File size: 544 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 = rfc2616.html rfc2617.html rfc2965.html rfc4234.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.