#!/bin/sh

# $Id: bootstrap 729 2007-01-14 13:44:38Z michael $
# $URL: https://ssl.bulix.org/svn/lcd4linux/trunk/bootstrap $

# exit on errors
set -e

# set nicer prompt for tracing
PS4="$0:\$LINENO> "
set -x

aclocal
# libtoolize --copy --force 
autoheader
automake --add-missing --copy --foreign 
autoconf

