#!/bin/sh

# bootstrap - script to bootstrap the distribution rolling engine

# usage:
# ./bootstrap && ./configure && make distcheck
#
# this yields a tarball which one can install doing
#
# $ tar zxf PACKAGENAME-*.tar.gz
# $ cd PACKAGENAME-*
# $ ./configure
# $ make
# # make install

# requirements:
#  GNU autoconf, from e.g. ftp.gnu.org:/pub/gnu/autoconf
#  GNU automake, from e.g. http://www.gnu.org/software/automake/
#  GNU libtool

# See http://mdcc.cx/pub/autobook/autobook-latest/html/autobook_88.html

test -f THANKS || ln -s contrib THANKS
test -f COPYING || ln -s LICENSE COPYING
test -f ChangeLog || ln -s CHANGES ChangeLog

autoreconf --install --symlink

#aclocal \
#    && autoheader \
#    && automake --verbose --gnu --add-missing \
#    && autoconf
#
#libtoolize --automake

