Compiling libtool examples

This is more a reminder to myself, but here's how to compile the libtool examples:

$ cd demo
$ aclocal
$ libtoolize --automake
$ automake --add-missing
$ autoconf
$ ./configure
$ make

It's really how to bootstrap any GNU autotools using application I suppose.