Demonstrates the problems with executables and shared
libraries in the same tree, when using 
'make install DESTDIR=...'

(Actually, DESTDIR has little to do with this problem,
but I really didn't want people using this demo to clobber
their /usr/lib... :-0 .  This is a cygwin/windows problem.)

To run, unpack, and
 ./bootstrap
 ./configure --prefix=/usr
 make
 make install DESTDIR=`pwd`/inst

You'll see that after installing libone into inst/usr/lib,
it relinks program.exe for no apparent reason...

While this appears to be a minor issue, it is REALLY 
annoying, especially if there are a lot of object 
files.  You relink all of the executables in a project
EVERY time you do ANYTHING.  make check.  make install.
make dist.  make info.  ANYTHING.  Sometimes, in complicated
projects, interlocking dependencies between exe's will 
cause multiple relinks of both exe's over and over and...

This needs fixing.

To completely clean up, use
 ./unbootstrap
