50 lines
937 B
Plaintext
50 lines
937 B
Plaintext
(* html4-lib.cm
|
|
*
|
|
* COPYRIGHT (c) 2014 The Fellowship of SML/NJ (http://www.smlnj.org)
|
|
* All rights reserved.
|
|
*
|
|
* CM file for the HTML4 library.
|
|
*)
|
|
|
|
Library
|
|
|
|
signature HTML4
|
|
structure HTML4
|
|
structure HTML4Attrs
|
|
structure HTML4Entities
|
|
structure HTML4Parser
|
|
structure HTML4Tokens
|
|
structure HTML4TokenUtils
|
|
structure HTML4Utils
|
|
structure HTML4Print
|
|
|
|
is
|
|
$/basis.cm
|
|
$/smlnj-lib.cm
|
|
$/ml-lpt-lib.cm
|
|
|
|
#if defined(NO_PLUGINS)
|
|
html4.g.sml
|
|
html4.l.sml
|
|
html4-attr.g.sml
|
|
html4-attr.l.sml
|
|
#else
|
|
html4.g : ml-antlr
|
|
html4.l : ml-ulex
|
|
html4-attr.g : ml-antlr
|
|
html4-attr.l : ml-ulex
|
|
#endif
|
|
|
|
html4.sig
|
|
html4.sml
|
|
html4-attrs.sml
|
|
html4-entities.sml
|
|
html4-parser.sml
|
|
html4-print.sml
|
|
html4-token-utils.sml
|
|
html4-utils.sml
|
|
|
|
(* ______________________________________________________________________
|
|
End of html4-lib.cm
|
|
______________________________________________________________________ *)
|