|
Lines 247-257
Link Here
|
| 247 |
and convert the document to other formats for review.</para> |
247 |
and convert the document to other formats for review.</para> |
| 248 |
|
248 |
|
| 249 |
<screen>&prompt.user; <userinput>make lint</userinput> |
249 |
<screen>&prompt.user; <userinput>make lint</userinput> |
| 250 |
&prompt.user; <userinput>make FORMATS=<replaceable>format</replaceable></userinput></screen> |
250 |
&prompt.user; <userinput>make FORMATS=<replaceable>format-list</replaceable></userinput></screen> |
| 251 |
|
251 |
|
| 252 |
<para>Where <replaceable>format</replaceable> is one of |
252 |
<para>Where <replaceable>format-list</replaceable> is one of |
| 253 |
<literal>html</literal>, <literal>html-split</literal>, |
253 |
<literal>html</literal>, <literal>html-split</literal>, |
| 254 |
<literal>txt</literal>, or <literal>rtf</literal></para> |
254 |
<literal>txt</literal>, or <literal>rtf</literal>, |
|
|
255 |
or a space-separated list of more than one of these. |
| 256 |
Use quotes around the list of formats when you build more |
| 257 |
than one format in one command.</para> |
| 258 |
|
| 259 |
<para>For example, to convert the document to |
| 260 |
<literal>html</literal> only, you would use:</para> |
| 261 |
|
| 262 |
<screen>&prompt.user; <userinput>make FORMATS=html</userinput></screen> |
| 263 |
|
| 264 |
<para>But when you want to convert the document to both |
| 265 |
<literal>html</literal> and <literal>txt</literal> format, |
| 266 |
you should use either two separate &man.make.1; runs, |
| 267 |
with:</para> |
| 268 |
|
| 269 |
<screen>&prompt.user; <userinput>make FORMATS=html</userinput> |
| 270 |
&prompt.user; <userinput>make FORMATS=txt</userinput></screen> |
| 271 |
|
| 272 |
<para>or, you can do it in one command:</para> |
| 273 |
|
| 274 |
<screen>&prompt.user; <userinput>make FORMATS="html txt"</userinput></screen> |
| 255 |
</step> |
275 |
</step> |
| 256 |
|
276 |
|
| 257 |
<step> |
277 |
<step> |