1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
We don't have to provide parents to modules now
$ ocamlc -c -bin-annot test.mli
$ odoc compile test.cmti
$ odoc link test.odoc
$ odoc html-generate test.odocl -o output --flat
$ odoc latex-generate test.odocl -o output
$ odoc man-generate test.odocl -o output
$ find output | sort
output
output/Test-M-module-type-N.html
output/Test-M.html
output/Test.3o
output/Test.M.3o
output/Test.html
output/Test.tex
$ find output -mindepth 1 | sort
output/Test-M-module-type-N.html
output/Test-M.html
output/Test.3o
output/Test.M.3o
output/Test.html
output/Test.tex
|