* To build the ocamldap library (bytecode and native):

    make dep

    make

* NOTE, if you have libldap, and liblber installed in a nonstandard place
  set your $CFLAGS environment variable to take into account it's location.
  eg: make CFLAGS="-I/usr/local/include -L/usr/local/lib"

* To test the library:

    make test

note: You'll probably need to edit test.ml to provide proper authentication
paramters for your server before you run 'make test'. Even if you don't ever
run them the test programs are a good way to learn how to use the library.

* To install the library (note, findlib will make sure it gets installed
in the right place, if you need to tell findlib to install it somewhere
else, define DESTDIR (eg. make install DESTDIR=/tmp/ocamldap)):

    make install
