INSTALLING THE DOCKAPP :



1. CONFIGURE THE SOURCES :

        Run ./configure to select what kind of mailbox you want to
        enable wmmaiload for. To get some help type ./configure -help

        If you have non-standard libraries or libraries in non-standard
        path, you can add the includes path with -Ipath to the USER_CPPFLAGS
        in Init.make in each directory that need it. Same thing for link
        options : just add -Lpath to USER_LDFLAGS.


2. COMPILE THE SOURCES :

        $ make


3. INSTALL THE PROGRAM :

        $ make install-strip

        or, if you want a system-wide installation

        $ su -c "make install-strip"


        You can specify a destination directory other than / (which $PREFIX is
        added to) :

        $ make install-strip DESTDIR=./debian

        The resulting installation will be in ./debian/$PREFIX/...

        You can also simply overwrite PREFIX using the -prefix option with
        ./configure


4. THAT'S ALL FOLKS :)

