File: README.md

package info (click to toggle)
caml2html 1.4.3-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, stretch
  • size: 300 kB
  • sloc: ml: 1,996; makefile: 162
file content (57 lines) | stat: -rw-r--r-- 1,054 bytes parent folder | download | duplicates (2)
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
Caml2html
=========

Caml2html is a command-line tool that highlights the syntax of OCaml 
source code.

Requirements
------------

Caml2html needs an OCaml compiler (>= 3.00) properly installed.
GNU make is required for the compilation.

Compiling
---------

```bash
$ make      # try "make byte" if make does not work
```

Compiling the library (optional):

```bash
$ 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`).



Authors and license
-------------------

Caml2html was originally written by 
Sbastien Ailleret, and is now developed by Martin Jambon.
It is distributed for free under a GPL license (see `LICENSE` file).