source: draft-ietf-httpbis-security-properties/05/Makefile @ 1963

Last change on this file since 1963 was 790, checked in by julian.reschke@…, 13 years ago

snapshot draft-ietf-httpbis-security-properties-05

  • Property svn:executable set to *
File size: 635 bytes
Line 
1xml2rfc = "../../xml2rfc/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 = draft-ietf-httpbis-security-properties-05.html \
9          draft-ietf-httpbis-security-properties-05.redxml \
10          draft-ietf-httpbis-security-properties-05.txt
11
12all: $(TARGETS)
13
14clean:
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
Note: See TracBrowser for help on using the repository browser.