=======================================
VDK 0.6.0 INSTALLING INSTRUCTIONS
=======================================
please report any comment or bug to:
mmotta@guest.net

=================================================
TO MAKE AND INSTALL FOR THOSE WITH SU PERMISSION:
=================================================
If you haven't yet untarred the file, do

# tar xvzf vdk-0.6.0.tar.gz

Now just run ./configure to check your system and create all necessary file.
configure will accept like options (to see all of them do ./configure --help)
    --prefix=[DIR] where to install it [default=/usr/local]
    --enable-debug=[no/minimum/yes] it enable the debug system [default=no]
	    no=it will compile with -s flag
	    minimum=with -s -DVDKDEBUG (defined in config.h)
	    yes=with -g -DVDKDEBUG
    --enable-shared/static=[yes/no] 
	build shared/static library [default=yes]
    --enable-opt=[OPTIMIZATION/no]  
	build with -O$OTIMIZATION compiler lever [default=2]
	it can be disabled with no
    --enable-tesvdk=[yes/no]
        build or not testvdk program

When configure finish do

# make 

This will produce:
core library vdk 0.6.0
component library  0.4.0
a test program in ./testvdk/testvdk
a configure script vdk-config to use when compiling your programs
to be used as gtk-config

To install just do
# make install
(you may need root privilege)
This will install
core and component library in $(prefix)/lib
include headers in $(prefix)/include
configure script vdk-config in $(prefix)/bin

=========
CLEANING
=========

# make clean
This will remove all obj's and libs from source tree

# make distclean
This will remove all file created by configure


Enjoy.
