Last change
on this file since 107 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 | |
---|
1 | xml2rfc = "$(HOME)/bin/xml2rfc-1.33pre4/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 = rfc2616.html rfc2617.html rfc2965.html rfc4234.html \ |
---|
9 | rfc2616-symrefs.html |
---|
10 | |
---|
11 | all: $(TARGETS) |
---|
12 | |
---|
13 | clean: |
---|
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.