Last change
on this file since 497 was
216,
checked in by paul.hoffman@…, 15 years ago
|
Checked in 01 of security, also modded the Makefile for my setup.
|
-
Property svn:executable set to
*
|
File size:
646 bytes
|
Line | |
---|
1 | xml2rfc = "/Users/paul/Documents/xml2rfc-dev/xml2rfc.tcl"
|
---|
2 | saxpath = "$(HOME)/java/saxon-8-9-j/saxon8.jar"
|
---|
3 | saxon = java -classpath $(saxpath) net.sf.saxon.Transform -novw
|
---|
4 |
|
---|
5 | stylesheet = ../myxml2rfc.xslt
|
---|
6 | reduction = ../../rfc2629xslt/clean-for-DTD.xslt
|
---|
7 |
|
---|
8 | TARGETS = draft-ietf-httpbis-security-properties.html \
|
---|
9 | draft-ietf-httpbis-security-properties.redxml \
|
---|
10 | draft-ietf-httpbis-security-properties.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 |
|
---|
Note: See
TracBrowser
for help on using the repository browser.