[/] [trunk/] [src/] [graphviz/] [sources.mlb] - Blame information for rev 62

Line No. Rev Author Line
1 62 tbourke
(* $Id: sources.mlb 62 2008-08-20 11:20:33Z tbourke $
2
 *
3
 * 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
 *)
15 4 tbourke
local
16
    $(SML_LIB)/basis/basis.mlb
17
    $(SML_LIB)/basis/sml-nj.mlb
18
    $(SML_LIB)/smlnj-lib/Util/smlnj-lib.mlb
19
    $(SML_LIB)/smlnj-lib/PP/pp-lib.mlb
20
 
21 21 tbourke
    ../general.mlb
22
 
23 11 tbourke
    x11_color.sig
24
    x11color.sml
25 4 tbourke
 
26
    attribute.sig
27 13 tbourke
    edge_attribute.sig
28
    graph_attribute.sig
29
    node_attribute.sig
30 4 tbourke
    id.sig
31
 
32
    dot.sig
33 11 tbourke
    dotfn.sml
34 4 tbourke
    ann "nonexhaustiveMatch ignore" in
35 11 tbourke
        showattfn.sml
36 4 tbourke
    end
37 11 tbourke
    dotppfn.sml
38 4 tbourke
 
39 11 tbourke
    textattribute.sml
40
    textdot.sml
41
    textdotio.sml
42 4 tbourke
 
43 11 tbourke
    typedattributes.sml
44
    typeddot.sml
45
    typeddotio.sml
46
    typeddotutil.sml
47 4 tbourke
 
48
    plain.sig
49 11 tbourke
    plainfn.sml
50
    textplain.sml
51 4 tbourke
 
52
    graphviz.sig
53 11 tbourke
    graphvizfn.sml
54 21 tbourke
    hackopsys.sml
55 57 tbourke
    $(TARGET)-signal64.sml (* unix/win *)
56
    $(TARGET)-graphviz64.sml (* unix/win *)
57 4 tbourke
in
58
    signature DOT
59
 
60
    structure Graphviz
61
 
62
    structure TextDot
63
    structure TextDotIO
64
    structure TextAttribute
65
 
66
    signature GRAPH_ATTRIBUTE
67
    signature NODE_ATTRIBUTE
68
    signature EDGE_ATTRIBUTE
69
    structure TypedDot
70
    structure TypedDotIO
71
    structure TypedAttributes
72
    structure TypedDotUtil
73
 
74
    signature PLAIN
75
    structure TextPlain
76
end