]> matita.cs.unibo.it Git - helm.git/blob - helm/DEVEL/ocaml-http/INSTALL
ocaml 3.09 transition
[helm.git] / helm / DEVEL / ocaml-http / INSTALL
1
2 In order to build ocaml-http you will need:
3
4   - the ocaml compiler
5     [ http://caml.inria.fr ]
6
7   - findlib
8     [ http://www.ocaml-programming.de/packages/documentation/findlib/ ]
9
10   - ocamlnet
11     [ http://sourceforge.net/projects/ocamlnet ]
12
13   - pcre-ocaml
14     [ http://www.ai.univie.ac.at/~markus/home/ocaml_sources.html ]
15
16 To build the bytecode library:
17
18   $ make all
19
20 To build the nativecode library (only if you have an ocaml native code
21 compiler):
22
23   $ make opt
24
25 To install the built stuff in the OCaml standard library directory (as root):
26
27   # make install
28
29 To install the built stuff in another directory:
30
31   $ make install DESTDIR=another_directory
32
33 To build a debian package of the library (please note that to build a debian
34 package you will also need some additional stuff like debhelper, fakeroot, ...):
35
36   $ fakeroot debian/rules binary
37