How to COMPILE and INSTALL DFM:
===============================

You need: a c-compiler, gtk+, libXpm, libXext, X11

In order to COMPILE make sure, that you are in the top of the DFM-hierarchy.
Now type:

>./configure
>make
>make install

this installs dfm in /usr/local

===============================================================================
TIPS:
===============================================================================

You may use Imlib to load and scale the icons, but the result is very ugly so
this is disabled by default.

>./configure --enable-imlib-icons

GTK-Imlib is used for the gtk dialogs if available (independent from this 
switch).
-------------------------------------------------------------------------------
You are able to set the CC and CFLAGS variables before executing the 
configure script, if needed: (bash)

>CC=cc CFLAGS=-O2 ./configure
-------------------------------------------------------------------------------
To change the installation directory you can usr the --prefix option of
the configure script (default is /usr/local, see above)

>./configure --prefix=/usr
-------------------------------------------------------------------------------
If you don't want to include debug information just type "make install-strip"
instead of "make install", or the CFLAGS without "-g" .
-------------------------------------------------------------------------------
There is a possiblity to have more Mac or Wps look. Use -D to define the look 
in the CFLAGS:

>CFLAGS="-O2 -DLOOK_MAC" ./configure
or
>CFLAGS="-O2 -DLOOK_WPS" ./configure

(Mac look provided by Peter Federighi <pfederighi@yahoo.com>)
-------------------------------------------------------------------------------
