15
15
DOCS :=
16
16
DOCS_L10N :=
17
17
18
+ BASE_DOC_OPTS := --from=markdown --standalone --toc --number-sections --include-before-body=doc/version_info.html
19
+ HTML_OPTS = $(BASE_DOC_OPTS ) --to=html5 --section-divs --css=rust.css --include-in-header=doc/favicon.inc
20
+ TEX_OPTS = $(BASE_DOC_OPTS ) --to=latex
21
+ EPUB_OPTS = $(BASE_DOC_OPTS ) --to=epub
18
22
19
23
# #####################################################################
20
24
# Docs, from pandoc, rustdoc (which runs pandoc), and node
@@ -49,86 +53,45 @@ doc/rust.html: rust.md doc/version_info.html doc/rust.css doc/manual.inc \
49
53
doc/favicon.inc
50
54
@$(call E, pandoc: $@ )
51
55
$(Q )$(CFG_NODE ) $(S ) doc/prep.js --highlight $< | \
52
- " $( CFG_PANDOC) " \
53
- --standalone --toc \
54
- --section-divs \
55
- --number-sections \
56
- --from =markdown --to=html5 \
57
- --css=rust.css --include-in-header=doc/manual.inc \
58
- --include-in-header=doc/favicon.inc \
59
- --include-before-body=doc/version_info.html \
60
- --output=$@
56
+ $(CFG_PANDOC ) $(HTML_OPTS ) --include-in-header=doc/manual.inc --output=$@
61
57
62
58
DOCS += doc/rust.tex
63
59
doc/rust.tex : rust.md doc/version.md
64
60
@$(call E, pandoc: $@ )
65
61
$(Q )$(CFG_NODE ) $(S ) doc/prep.js $< | \
66
- " $( CFG_PANDOC) " \
67
- --standalone --toc \
68
- --number-sections \
69
- --include-before-body =doc/version.md \
70
- --from=markdown --to=latex \
71
- --output=$@
62
+ $(CFG_PANDOC ) $(TEX_OPTS ) --output=$@
72
63
73
64
DOCS += doc/rust.epub
74
- doc/rust.epub : rust.md doc/version_info.html doc/rust.css doc/manual.inc
65
+ doc/rust.epub : rust.md doc/version_info.html doc/rust.css
75
66
@$(call E, pandoc: $@ )
76
67
$(Q )$(CFG_NODE ) $(S ) doc/prep.js --highlight $< | \
77
- " $( CFG_PANDOC) " \
78
- --standalone --toc \
79
- --section-divs \
80
- --number-sections \
81
- --from =markdown --to=epub \
82
- --include-before-body=doc/version_info.html \
83
- --output=$@
68
+ $(CFG_PANDOC ) $(EPUB_OPTS ) --output=$@
84
69
85
70
DOCS += doc/rustpkg.html
86
- doc/rustpkg.html : rustpkg.md doc/version_info.html doc/rust.css doc/manual.inc \
71
+ doc/rustpkg.html : rustpkg.md doc/version_info.html doc/rust.css \
87
72
doc/favicon.inc
88
73
@$(call E, pandoc: $@ )
89
74
$(Q )$(CFG_NODE ) $(S ) doc/prep.js --highlight $< | \
90
- " $( CFG_PANDOC) " \
91
- --standalone --toc \
92
- --section-divs \
93
- --number-sections \
94
- --from =markdown --to=html5 \
95
- --css=rust.css --include-in-header=doc/manual.inc \
96
- --include-in-header=doc/favicon.inc \
97
- --include-before-body=doc/version_info.html \
98
- --output=$@
75
+ $(CFG_PANDOC ) $(HTML_OPTS ) --output=$@
99
76
100
77
DOCS += doc/tutorial.html
101
78
doc/tutorial.html : tutorial.md doc/version_info.html doc/rust.css \
102
79
doc/favicon.inc
103
80
@$(call E, pandoc: $@ )
104
81
$(Q )$(CFG_NODE ) $(S ) doc/prep.js --highlight $< | \
105
- $(CFG_PANDOC) --standalone --toc \
106
- --section-divs --number-sections \
107
- --from =markdown --to=html5 --css=rust.css \
108
- --include-in-header=doc/favicon.inc \
109
- --include-before-body=doc/version_info.html \
110
- --output=$@
82
+ $(CFG_PANDOC ) $(HTML_OPTS ) --output=$@
111
83
112
84
DOCS += doc/tutorial.tex
113
85
doc/tutorial.tex : tutorial.md doc/version.md
114
86
@$(call E, pandoc: $@ )
115
87
$(Q )$(CFG_NODE ) $(S ) doc/prep.js $< | \
116
- " $( CFG_PANDOC) " \
117
- --standalone --toc \
118
- --number-sections \
119
- --include-before-body =doc/version.md \
120
- --from=markdown --to=latex \
121
- --output=$@
88
+ $(CFG_PANDOC ) $(TEX_OPTS ) --output=$@
122
89
123
90
DOCS += doc/tutorial.epub
124
91
doc/tutorial.epub : tutorial.md doc/version_info.html doc/rust.css
125
92
@$(call E, pandoc: $@ )
126
93
$(Q )$(CFG_NODE ) $(S ) doc/prep.js --highlight $< | \
127
- $(CFG_PANDOC) --standalone --toc \
128
- --section-divs --number-sections \
129
- --from =markdown --to=epub \
130
- --include-before-body=doc/version_info.html \
131
- --output=$@
94
+ $(CFG_PANDOC ) $(EPUB_OPTS ) --output=$@
132
95
133
96
134
97
DOCS_L10N += doc/l10n/ja/tutorial.html
@@ -146,84 +109,49 @@ doc/tutorial-macros.html: tutorial-macros.md doc/version_info.html doc/rust.css
146
109
doc/favicon.inc
147
110
@$(call E, pandoc: $@ )
148
111
$(Q )$(CFG_NODE ) $(S ) doc/prep.js --highlight $< | \
149
- $(CFG_PANDOC) --standalone --toc \
150
- --section-divs --number-sections \
151
- --from =markdown --to=html5 --css=rust.css \
152
- --include-in-header=doc/favicon.inc \
153
- --include-before-body=doc/version_info.html \
154
- --output=$@
112
+ $(CFG_PANDOC ) $(HTML_OPTS ) --output=$@
155
113
156
114
DOCS += doc/tutorial-container.html
157
115
doc/tutorial-container.html : tutorial-container.md doc/version_info.html doc/rust.css \
158
116
doc/favicon.inc
159
117
@$(call E, pandoc: $@ )
160
118
$(Q )$(CFG_NODE ) $(S ) doc/prep.js --highlight $< | \
161
- $(CFG_PANDOC) --standalone --toc \
162
- --section-divs --number-sections \
163
- --from =markdown --to=html5 --css=rust.css \
164
- --include-in-header=doc/favicon.inc \
165
- --include-before-body=doc/version_info.html \
166
- --output=$@
119
+ $(CFG_PANDOC ) $(HTML_OPTS ) --output=$@
167
120
168
121
DOCS += doc/tutorial-ffi.html
169
122
doc/tutorial-ffi.html : tutorial-ffi.md doc/version_info.html doc/rust.css \
170
123
doc/favicon.inc
171
124
@$(call E, pandoc: $@ )
172
125
$(Q )$(CFG_NODE ) $(S ) doc/prep.js --highlight $< | \
173
- $(CFG_PANDOC) --standalone --toc \
174
- --section-divs --number-sections \
175
- --from =markdown --to=html5 --css=rust.css \
176
- --include-in-header=doc/favicon.inc \
177
- --include-before-body=doc/version_info.html \
178
- --output=$@
126
+ $(CFG_PANDOC ) $(HTML_OPTS ) --output=$@
179
127
180
128
DOCS += doc/tutorial-borrowed-ptr.html
181
129
doc/tutorial-borrowed-ptr.html : tutorial-borrowed-ptr.md doc/version_info.html doc/rust.css \
182
130
doc/favicon.inc
183
131
@$(call E, pandoc: $@ )
184
132
$(Q )$(CFG_NODE ) $(S ) doc/prep.js --highlight $< | \
185
- $(CFG_PANDOC) --standalone --toc \
186
- --section-divs --number-sections \
187
- --from =markdown --to=html5 --css=rust.css \
188
- --include-in-header=doc/favicon.inc \
189
- --include-before-body=doc/version_info.html \
190
- --output=$@
133
+ $(CFG_PANDOC ) $(HTML_OPTS ) --output=$@
191
134
192
135
DOCS += doc/tutorial-tasks.html
193
136
doc/tutorial-tasks.html : tutorial-tasks.md doc/version_info.html doc/rust.css \
194
137
doc/favicon.inc
195
138
@$(call E, pandoc: $@ )
196
139
$(Q )$(CFG_NODE ) $(S ) doc/prep.js --highlight $< | \
197
- $(CFG_PANDOC) --standalone --toc \
198
- --section-divs --number-sections \
199
- --from =markdown --to=html5 --css=rust.css \
200
- --include-in-header=doc/favicon.inc \
201
- --include-before-body=doc/version_info.html \
202
- --output=$@
140
+ $(CFG_PANDOC ) $(HTML_OPTS ) --output=$@
203
141
204
142
DOCS += doc/tutorial-conditions.html
205
143
doc/tutorial-conditions.html : tutorial-conditions.md doc/version_info.html doc/rust.css \
206
144
doc/favicon.inc
207
145
@$(call E, pandoc: $@ )
208
146
$(Q )$(CFG_NODE ) $(S ) doc/prep.js --highlight $< | \
209
- $(CFG_PANDOC) --standalone --toc \
210
- --section-divs --number-sections \
211
- --from =markdown --to=html5 --css=rust.css \
212
- --include-in-header=doc/favicon.inc \
213
- --include-before-body=doc/version_info.html \
214
- --output=$@
147
+ $(CFG_PANDOC ) $(HTML_OPTS ) --output=$@
215
148
216
149
DOCS += doc/tutorial-rustpkg.html
217
150
doc/tutorial-rustpkg.html : tutorial-rustpkg.md doc/version_info.html doc/rust.css \
218
151
doc/favicon.inc
219
152
@$(call E, pandoc: $@ )
220
153
$(Q )$(CFG_NODE ) $(S ) doc/prep.js --highlight $< | \
221
- $(CFG_PANDOC) --standalone --toc \
222
- --section-divs --number-sections \
223
- --from =markdown --to=html5 --css=rust.css \
224
- --include-in-header=doc/favicon.inc \
225
- --include-before-body=doc/version_info.html \
226
- --output=$@
154
+ $(CFG_PANDOC ) $(HTML_OPTS ) --output=$@
227
155
228
156
ifeq ($(CFG_PDFLATEX),)
229
157
$(info cfg : no pdflatex found, omitting doc/rust.pdf)
0 commit comments