-
Notifications
You must be signed in to change notification settings - Fork 43
/
Makefile
160 lines (130 loc) · 5.53 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
xml2rfc = xml2rfc
saxpath = lib/saxon.jar
saxon = java -classpath $(saxpath) net.sf.saxon.Transform -l -versionmsg:off
rfcdiff = rfcdiff --width 78 --stdout
stylesheet = lib/myxml2rfc.xslt
reduction = lib/clean-for-xml2rfc-v3.xslt
xreffer = lib/xreffer.xslt
bap = bap
bd = build
VPATH = build
GPATH = build
draftname = draft-ietf-httpbis
CACHE = $(draftname)-cache-latest
MESSAGING = $(draftname)-messaging-latest
SEMANTICS = $(draftname)-semantics-latest
TARGETS_XML = $(MESSAGING).xml \
$(SEMANTICS).xml \
$(CACHE).xml \
rfc9110.xml rfc9111.xml rfc9112.xml
TARGETS_TXT= $(TARGETS_XML:.xml=.txt)
TARGETS_HTML= $(TARGETS_XML:.xml=.html)
TARGETS_XHTML= $(addprefix $(bd)/,$(TARGETS_XML:.xml=.xhtml))
TARGETS_REDXML= $(addprefix $(bd)/,$(TARGETS_XML:.xml=.redxml))
TARGETS_ABNF = $(bd)/$(MESSAGING).abnf \
$(bd)/$(SEMANTICS).abnf \
$(bd)/$(CACHE).abnf
TARGETS_ABNFAPPENDIX= $(TARGETS_ABNF:.abnf=.abnf-appendix)
TARGETS_PARSEDABNF= $(TARGETS_ABNF:.abnf=.parsed-abnf)
TARGETS = $(TARGETS_HTML) \
$(TARGETS_REDXML) \
$(TARGETS_TXT) \
$(TARGETS_ABNF) \
$(TARGETS_PARSEDABNF) \
$(TARGETS_ABNFAPPENDIX) \
$(bd)/$(MESSAGING).iana-headers \
$(bd)/$(SEMANTICS).iana-headers \
$(bd)/$(SEMANTICS).iana-methods \
$(bd)/$(SEMANTICS).iana-status-codes \
$(bd)/$(CACHE).iana-headers \
$(bd)/$(CACHE).cache-directives \
httpbis-errata-status.html \
httpbis-errata-status2.html \
httpbis.abnf
all: $(TARGETS)
ci: $(TARGETS_HTML) $(bd)/$(MESSAGING).iana-headers \
$(bd)/$(SEMANTICS).iana-headers \
$(bd)/$(SEMANTICS).iana-methods \
$(bd)/$(SEMANTICS).iana-status-codes \
$(bd)/$(CACHE).iana-headers \
$(bd)/$(CACHE).cache-directives
clean:
rm -f $(TARGETS)
diff:
$(rfcdiff) diffs/frankenRFC723x_sem.txt $(SEMANTICS).txt | \
egrep -v -- '^<\!-- ' > diffs/diff_semantics.html
$(rfcdiff) diffs/frankenRFC723x_msg.txt $(MESSAGING).txt | \
egrep -v -- '^<\!-- ' > diffs/diff_messaging.html
$(rfcdiff) diffs/frankenRFC723x_cache.txt $(CACHE).txt | \
egrep -v -- '^<\!-- ' > diffs/diff_cache.html
diff00:
$(rfcdiff) 00/$(draftname)-messaging-00.txt $(MESSAGING).txt | \
egrep -v -- '^<\!-- ' > diffs/diff_messaging_since_00.html
$(rfcdiff) 00/$(draftname)-semantics-00.txt $(SEMANTICS).txt | \
egrep -v -- '^<\!-- ' > diffs/diff_semantics_since_00.html
$(rfcdiff) 00/$(draftname)-conditional-00.txt $(CONDITIONAL).txt | \
egrep -v -- '^<\!-- ' > diffs/diff_conditional_since_00.html
$(rfcdiff) 00/$(draftname)-range-00.txt $(RANGE).txt | \
egrep -v -- '^<\!-- ' > diffs/diff_range_since_00.html
$(rfcdiff) 00/$(draftname)-cache-00.txt $(CACHE).txt | \
egrep -v -- '^<\!-- ' > diffs/diff_cache_since_00.html
$(rfcdiff) 00/$(draftname)-auth-00.txt $(AUTH).txt | \
egrep -v -- '^<\!-- ' > diffs/diff_auth_since_00.html
%.html: %.xml $(stylesheet)
$(saxon) $< $(xreffer) | $(saxon) -now:$(shell date -r $< -u +%Y-%m-%dT%H:%M:%SZ) - $(stylesheet) xml2rfc-ext-maxwidth=700 xml2rfc-ext-styles="ff-noto ffb-sans-serif fft-sans-serif header-bw" xml2rfc-ext-paragraph-links=yes xml2rfc-ext-abort-on=ERROR | awk -f lib/html5doctype.awk > $@
$(bd)/%.redxml: %.xml $(reduction)
$(saxon) $< $(xreffer) | $(saxon) - $(reduction) > $@
%.txt: $(bd)/%.redxml
$(xml2rfc) --v3 --legacy-list-symbols --legacy-date-format --table-borders=minimal --bom $< -o $@
$(bd)/%.abnf: %.xml lib/extract-artwork.xslt
$(saxon) $< lib/xreffer.xslt | $(saxon) - lib/extract-artwork.xslt type="abnf7230" >$@
$(bd)/%.parsed-abnf: $(bd)/%.abnf
$(bap)/bap -i $(bap)/core.abnf -L2 -X rfc7405 < $< | LC_COLLATE=C sort | $(bap)/bap -k -i $(bap)/core.abnf -X rfc7405 -l 69 >$@
$(bd)/%.abnf-appendix: $(bd)/%.parsed-abnf
$(saxon) $*.xml lib/abnf2xml2rfc.xslt abnf="../$<" >$@
$(bd)/%.xhtml: %.xml lib/rfc2629toXHTML.xslt
$(saxon) $< lib/xreffer.xslt | $(saxon) - lib/rfc2629toXHTML.xslt > $@
$(bd)/%.iana-headers: %.xml lib/extract-header-defs.xslt
$(saxon) $< lib/extract-header-defs.xslt > $@
$(bd)/%.iana-methods: %.xml lib/extract-method-defs.xslt
$(saxon) $< lib/extract-method-defs.xslt > $@
$(bd)/%.iana-status-codes: %.xml lib/extract-status-code-defs.xslt
$(saxon) $< lib/extract-status-code-defs.xslt > $@
$(bd)/%.cache-directives: %.xml lib/extract-cache-directives.xslt
$(saxon) $< lib/extract-cache-directives.xslt > $@
outlineALL.html: $(TARGETS_XHTML) lib/extractOutline.xslt
$(saxon) lib/extractOutline.xslt lib/extractOutline.xslt > $@
httpbis.abnf: $(TARGETS_ABNF)
lib/common-abnf.sh $^ > $@
saxonjar:
[ -f lib/saxon.jar ] || curl https://repo1.maven.org/maven2/net/sf/saxon/Saxon-HE/10.8/Saxon-HE-10.8.jar -o lib/saxon.jar
consistency.txt: $(TARGETS_XML)
rm -f $@
echo P1 >> $@
echo >> $@
saxon $(MESSAGING).xml lib/consistency-check.xslt >> $@
echo >> $@
echo P2 >> $@
echo >> $@
saxon $(SEMANTICS).xml lib/consistency-check.xslt >> $@
echo >> $@
echo P4 >> $@
echo >> $@
saxon $(CONDITIONAL).xml lib/consistency-check.xslt >> $@
echo >> $@
echo P5 >> $@
echo >> $@
saxon $(RANGE).xml lib/consistency-check.xslt >> $@
echo >> $@
echo P6 >> $@
echo >> $@
saxon $(CACHE).xml lib/consistency-check.xslt >> $@
echo >> $@
echo P7 >> $@
echo >> $@
saxon $(AUTH).xml lib/consistency-check.xslt >> $@
echo >> $@
removetrailingwhitespace:
sed -i 's/[[:space:]]*$$//' $(CACHE).xml
sed -i 's/[[:space:]]*$$//' $(MESSAGING).xml
sed -i 's/[[:space:]]*$$//' $(SEMANTICS).xml