Well, this doc is a little memo about how autoconf and automake works and
vdk implementation. [it is intended only for developers]

*) To regenerate every Makefile.in and configure script just run ./autogen.sh.
It will run every needed program and runs configure automatically.

*) To create a snapshot just do
# make snapshot
and in root directory there will be a file called vdkYYMMDD.tar.gz

*) To create a release just do
# make dist
and in root directory there will be a file called vdk-X.Y.Z.tar.gz

*) How to change the version
Edit configure.in and change the VDK*_VERSION_* to new version.
The package version is defined by VDK_VERSION
In vdk.m4 find line
    min_vdk_version=ifelse([$1], ,Major.Minor.micro,$1)
and change the number to reflect actual version

*) How to add a new file
Its depend.
If it is a [lib].cc add it to libvdk*_la_SOURCES into ./vdk*/Makefile.am.
If it is an include/vdk/*.h add it to vdkinclude_HEADERS into ./include/vdk/Makefile.am.
If it is a testvdk-file add it to testvdk_SOURCES into ./testvdk/Makefile.am.
If it is an example or a doc add to EXTRA_DIST in ./Makefile.am.

