Include CONFIG_CORE signature in domtool.cfs and fix webbw build
[hcoop/domtool2.git] / src / main-doc.sml
1 (* HCoop Domtool (http://hcoop.sourceforge.net/)
2 * Copyright (c) 2006-2007, Adam Chlipala
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version 2
7 * of the License, or (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17 *)
18
19 (* Driver for documentation generation *)
20
21 fun processArgs (args, basis, outdir, files, emacs) =
22 case args of
23 [] => (basis, outdir, files, emacs)
24 | "-basis" :: rest => processArgs (rest, true, outdir, files, emacs)
25 | "-out" :: dir :: rest => processArgs (rest, basis, dir, files, emacs)
26 | "-emacs" :: rest => processArgs (rest, basis, outdir, files, true)
27 | file :: rest =>
28 if size file > 0 andalso String.sub (file, 0) <> #"-" then
29 processArgs (rest, basis, outdir, file :: files, emacs)
30 else
31 raise Fail ("Uknown switch " ^ file)
32
33 val _ =
34 let
35 val (basis, outdir, files, emacs) = processArgs (CommandLine.arguments (),
36 false,
37 OS.FileSys.getDir (),
38 [],
39 false)
40
41 val files = if basis then
42 Main.listBasis () @ files
43 else
44 files
45 in
46 Tycheck.allowExterns ();
47 if emacs then
48 Autodoc.makeEmacsKeywords files
49 else
50 Autodoc.autodoc {outdir = outdir, infiles = files}
51 end