Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

ocamlify(1) [debian man page]

OCAMLIFY(1)						      General Commands Manual						       OCAMLIFY(1)

NAME
ocamlify - create an OCaml file including other files. SYNOPSIS
ocamlify [options] option-file DESCRIPTION
This program allows to copy files inside OCaml code. It uses a first file that describes the other files that must be included and the type of OCaml variable it should create. It can also describe dependencies to other files, in order to generate .depends files for make. For example, we can create a file test.mlify with this content: VarString oasissys_ml "OASISSys.ml" VarStringList readme_template_mkd "MANUAL-template.mkd" We then translate it using the program: $> ocamlify --output test.ml test.mlify And we get a file test.ml containing two OCaml variables: oasissys_ml, which is a string, and readme_template_mkd which is a string list (one string per line). OPTIONS
--var-string-list varname file Include file as a list of string, each string representing a line (without trailing EOL character) --var-string varname file Include file as a string. --output file Output file, default to standard output --depends Output file dependencies --target file Define target of dependencies -help|--help Display list of options AUTHORS
Sylvain Le Gall. Ocamlify User Manual November 9, 2010 OCAMLIFY(1)

Check Out this Related Man Page

CAML2HTML(1)						      General Commands Manual						      CAML2HTML(1)

NAME
caml2html - colorizes a set of OCaml source files. SYNOPSIS
caml2html [options] file* DESCRIPTION
Caml2html colorizes a set of OCaml source files (.ml, .mli, .mll, .mly, ...). Type annotations will be shown when the mouse pointer passes over an expression if the corresponding .annot file is available. To obtain a .annot file, compile your OCaml source files with ocamlc -dtypes or ocamlopt -dtypes. OPTIONS
-annotfilter {innermost|outermost} choose whether innermost or outermost type annotations should be used (default: innermost) -charset specify charset to use (default: iso-8859-1) -css use CSS named style.css for styling -cssurl use the given URL as CSS for styling -inhead use default styling and place it in the head section of the document (default when applicable) -inline use inline styling (HTML only, default fallback if -inhead is not applicable) -body output only document's body, for inclusion into an existing document (see also -make-css and -make-latex-defs) -ln add line number at the beginning of each line -hc comments are treated as raw HTML or LaTeX code (no newlines inside of tags) -t add a title to the HTML page -nf do not add footnotes to the HTML page -ie7 drop support for type annotations on Internet Explorer 6 and older -noannot do not insert type annotations as read from .annot files (HTML output only) -notab do not replace tabs by spaces -tab replace tab by n spaces (default = 8) -d generate files in directory dir, rather than in current directory -o output file -v print version number to stdout and exit -make-css create CSS file with default color definitions and exit -ext <NAME:CMD> use the given external command CMD to handle comments that start with (*NAME. NAME must be a lowercase identifier. -latex output LaTeX code instead of HTML. -make-latex-defs create a file containing the default LaTeX color definitions and matching highlighting commands, and exit. is not included. -help|--help Display this list of options AUTHORS
Sylvain Le Gall. Caml2html User Manual November 9, 2010 CAML2HTML(1)
Man Page