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 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
|
******************************************************************
CAML2HTML README file
******************************************************************
******************
Table of contents:
- Requirements
- Compiling
- Installing (executable)
- Installing (library)
- Running
- Supported platforms
- Contact
- Authors and license
*************
Requirements:
Caml2html needs an OCaml compiler (>= 3.00) properly installed.
GNU make is required for the compilation.
***********
Compiling:
make # try "make byte" if make does not work
Compiling the library (optional):
make lib # try "make bytelib" if it does not work
************
Installing the executable:
make install
The program is installed in the BINDIR
directory specified at the first line of the Makefile (/usr/bin by
default), and is named caml2html (even for bytecode option).
Uninstalling:
make uninstall
*********
How to run it:
Type "caml2html -help", or have a look at the html documentation
(caml2html.html).
*********************
Supported platforms:
Caml2html is supposed to work on every Unix platform on which OCaml is
correctly installed. It has been developed under Linux, but works
undoubtedly on any Unix machine.
Please report success or failure on any architecture.
Reported success:
- Linux on x86
- Windows 98 (using ocamake : http://tech.motion-twin.com/?&node=35)
*********
Contact:
Martin Jambon <martin_jambon@emailuser.net>
http://martin.jambon.free.fr/caml2html.html
*********
Authors and license:
Caml2html was originally written by
Sbastien Ailleret <sebastien@ailleret.com>, and is now
developed by Martin Jambon <martin_jambon@emailuser.net>.
It is distributed for free under a GPL license (see LICENSE file).
|