Compile and use of the MlDoC package MlDoC dot commands

First you must compile the package, consisting of the core module, the backend and the frontend modules. Here the steps needed for the case you use the generic OCaML system, version 3.XX:

ocamlc -c doc_core.ml 
ocamlc -c doc_html.mli 
ocamlc -c doc_html.ml 
ocamlc -c doc_latex.mli 
ocamlc -c doc_latex.ml 
ocamlc -c doc_text.mli 
ocamlc -c doc_text.ml 
ocamlc -c doc_help.ml 
ocamlc -a doc_core.cmo 
        doc_html.cmo 
        doc_latex.cmo 
        doc_text.cmo 
        doc_help.cmo -o mldoc.cma 

You need the Terminfo interface file terminfo.cmi to be able to compile the Doc_text module.
For VamSyS users:

vamcomp doc_core.ml 
vamcomp doc_html.mli 
vamcomp doc_html.ml 
vamcomp doc_latex.mli 
vamcomp doc_latex.ml 
vamcomp doc_text.mli 
vamcomp doc_text.ml 
vamcomp doc_help.ml 
vamar doc_core.cmo 
        doc_html.cmo 
        doc_latex.cmo 
        doc_text.cmo 
        doc_help.cmo -o mldoc.cma 



UP MlDoC dot commands