INSTALLATION
------------

There is no build dependencies other than the OCaml compiler and its standard libraries.
ODNS is not any binding to a C (or other language) library. The whole thing is entirely written in Objective Caml only.

The only installation dependency is omcalfind which has become a pretty standard installation tool and link-resolution tools for ocaml development.

1/ Run simply "make" to build the ODNS library and the ring program.

2/ Run "make install" to install "ring" in the default prefix (/usr/local). As for ODNS, the installation path is simply taken care of by ocamlfind.

2 bis/ If you want to provide your own prefix for "ring", set the PREFIX variable this way (for instance if you want the /opt prefix):
$ make install PREFIX=/opt

3/ If you need to uninstall ODNS and ring, run:
make uninstall

