Installation directions

I'm lazy and I don't want to learn the autotools so this is
mostly manual at the moment. Note that I haven't actually ported
this yet, so this is only for Linux.

Building the OMF
----------------

This is what I'd do if I were building my own project.

% tar xvjf omf2.tar.bz2
% cd omf2
% export OMF_ROOT=`pwd`
% make

You really need to set the OMF_ROOT. It's quite important :)


Installing the OMF
------------------
Here's how I install it - it's pretty lame.

% su
# cp lib/* /usr/local/lib
# /sbin/ldconfig

See... lame. But effective. I'm not sure that you really
need to run ldconfig, but I do just in case.

Building and Installing the Python Bindings
-------------------------------------------

This is actually pretty easy... After building the libraries
above, do the following:

% cd Python
% make
% su
# make install

The Makefile basically just runs setup.py with required
arguments. You could use that too if you need to do anything
interesting with it.

That's about it.