| 1 |
16 |
tbourke |
(* $Id$
|
| 2 |
|
|
*
|
| 3 |
62 |
tbourke |
* Copyright (c) 2008 Timothy Bourke (University of NSW and NICTA)
|
| 4 |
|
|
* All rights reserved.
|
| 5 |
|
|
*
|
| 6 |
|
|
* This program is free software; you can redistribute it and/or modify it
|
| 7 |
|
|
* under the terms of the "BSD License" which is distributed with the
|
| 8 |
|
|
* software in the file LICENSE.
|
| 9 |
|
|
*
|
| 10 |
|
|
* This program is distributed in the hope that it will be useful, but
|
| 11 |
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
| 12 |
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the BSD
|
| 13 |
|
|
* License for more details.
|
| 14 |
16 |
tbourke |
*)
|
| 15 |
|
|
use "mlyacc.ml";
|
| 16 |
|
|
use "smlnj-lib.ml";
|
| 17 |
|
|
use "fxlib.ml";
|
| 18 |
|
|
use "lib/sources.ml";
|
| 19 |
|
|
use "config/sources.ml";
|
| 20 |
68 |
tbourke |
use "general.ml";
|
| 21 |
16 |
tbourke |
use "graphviz/sources.ml";
|
| 22 |
46 |
tbourke |
use "uppaalxml/sources.ml";
|
| 23 |
45 |
tbourke |
use "uppaal/sources.ml";
|
| 24 |
16 |
tbourke |
use "maketest/sources.ml";
|
| 25 |
68 |
tbourke |
use "layout/sources.ml";
|
| 26 |
18 |
tbourke |
use "mcs51/sources.ml";
|
| 27 |
16 |
tbourke |
use "cmdlang/sources.ml";
|
| 28 |
|
|
use "commands.sig";
|
| 29 |
|
|
use "commands.sml";
|
| 30 |
|
|
use "urpal.sml";
|
| 31 |
|
|
fun urpal () = ignore (Urpal.main (CommandLine.name (),
|
| 32 |
|
|
CommandLine.arguments ()));
|
| 33 |
|
|
PolyML.export("urpal", urpal);
|