1 | xml2rfc = "../../xml2rfc/xml2rfc.tcl" |
---|
2 | saxpath = "$(HOME)/java/saxon-8-9-j/saxon8.jar" |
---|
3 | saxon = java -classpath $(saxpath) net.sf.saxon.Transform -novw -l |
---|
4 | |
---|
5 | stylesheet = ../myxml2rfc.xslt |
---|
6 | reduction = ../../rfc2629xslt/clean-for-DTD.xslt |
---|
7 | bap = ../../abnfparser/bap |
---|
8 | |
---|
9 | TARGETS_XML= p1-messaging.xml \ |
---|
10 | p2-semantics.xml \ |
---|
11 | p4-conditional.xml \ |
---|
12 | p5-range.xml \ |
---|
13 | p6-cache.xml \ |
---|
14 | p7-auth.xml |
---|
15 | |
---|
16 | TARGETS_ABNF= p1-messaging.abnf \ |
---|
17 | p2-semantics.abnf \ |
---|
18 | p4-conditional.abnf \ |
---|
19 | p5-range.abnf \ |
---|
20 | p6-cache.abnf \ |
---|
21 | p7-auth.abnf |
---|
22 | |
---|
23 | TARGETS_ABNFAPPENDIX= $(TARGETS_ABNF:.abnf=.abnf-appendix) |
---|
24 | TARGETS_HTML= $(TARGETS_XML:.xml=.html) |
---|
25 | TARGETS_XHTML= $(TARGETS_XML:.xml=.xhtml) |
---|
26 | TARGETS_PARSEDABNF= $(TARGETS_ABNF:.abnf=.parsed-abnf) |
---|
27 | TARGETS_REDXML= $(TARGETS_XML:.xml=.redxml) |
---|
28 | TARGETS_TXT= $(TARGETS_XML:.xml=.txt) |
---|
29 | |
---|
30 | TARGETS = $(TARGETS_HTML) \ |
---|
31 | $(TARGETS_REDXML) \ |
---|
32 | $(TARGETS_TXT) \ |
---|
33 | $(TARGETS_ABNF) \ |
---|
34 | $(TARGETS_PARSEDABNF) \ |
---|
35 | $(TARGETS_ABNFAPPENDIX) \ |
---|
36 | p1-messaging.iana-headers \ |
---|
37 | p2-semantics.iana-headers \ |
---|
38 | p2-semantics.iana-methods \ |
---|
39 | p2-semantics.iana-status-codes \ |
---|
40 | p4-conditional.iana-headers \ |
---|
41 | p4-conditional.iana-status-codes \ |
---|
42 | p5-range.iana-headers \ |
---|
43 | p5-range.iana-status-codes \ |
---|
44 | p6-cache.iana-headers \ |
---|
45 | p6-cache.iana-warn-codes \ |
---|
46 | p6-cache.cache-directives \ |
---|
47 | p7-auth.iana-headers \ |
---|
48 | p7-auth.iana-status-codes \ |
---|
49 | httpbis.abnf |
---|
50 | |
---|
51 | all: $(TARGETS) |
---|
52 | |
---|
53 | clean: |
---|
54 | rm -f $(TARGETS) |
---|
55 | |
---|
56 | %.html: %.xml $(stylesheet) |
---|
57 | $(saxon) $< $(stylesheet) > $@ |
---|
58 | |
---|
59 | %.redxml: %.xml $(reduction) |
---|
60 | $(saxon) $< $(reduction) > $@ |
---|
61 | |
---|
62 | %.txt: %.redxml |
---|
63 | $(xml2rfc) $< $@ |
---|
64 | |
---|
65 | %.abnf: %.xml ../../rfc2629xslt/extract-artwork.xslt |
---|
66 | $(saxon) $< ../../rfc2629xslt/extract-artwork.xslt type="abnf2616" >$@ |
---|
67 | |
---|
68 | %.parsed-abnf: %.abnf |
---|
69 | $(bap)/bap -i $(bap)/core.abnf < $< | sort | $(bap)/bap -k -i $(bap)/core.abnf -l 69 >$@ |
---|
70 | |
---|
71 | %.abnf-appendix: %.parsed-abnf |
---|
72 | $(saxon) $(basename $<).xml abnf2xml2rfc.xslt abnf="$<" >$@ |
---|
73 | |
---|
74 | %.xhtml: %.xml ../../rfc2629xslt/rfc2629toXHTML.xslt |
---|
75 | $(saxon) $< ../../rfc2629xslt/rfc2629toXHTML.xslt > $@ |
---|
76 | |
---|
77 | %.iana-headers: %.xml extract-header-defs.xslt |
---|
78 | $(saxon) $< extract-header-defs.xslt > $@ |
---|
79 | |
---|
80 | %.iana-methods: %.xml extract-method-defs.xslt |
---|
81 | $(saxon) $< extract-method-defs.xslt > $@ |
---|
82 | |
---|
83 | %.iana-status-codes: %.xml extract-status-code-defs.xslt |
---|
84 | $(saxon) $< extract-status-code-defs.xslt > $@ |
---|
85 | |
---|
86 | %.iana-warn-codes: %.xml extract-warn-code-defs.xslt |
---|
87 | $(saxon) $< extract-warn-code-defs.xslt > $@ |
---|
88 | |
---|
89 | %.cache-directives: %.xml extract-cache-directives.xslt |
---|
90 | $(saxon) $< extract-cache-directives.xslt > $@ |
---|
91 | |
---|
92 | outlineALL.html: $(TARGETS_XHTML) \ |
---|
93 | extractOutline.xslt |
---|
94 | $(saxon) extractOutline.xslt extractOutline.xslt > $@ |
---|
95 | rm p*.xhtml |
---|
96 | |
---|
97 | httpbis.abnf: $(TARGETS_ABNF) |
---|
98 | ./common-abnf.sh $^ > $@ |
---|