#!/bin/sh
# bootstrap 
# prepares a freshly checked out autotools project to be compiled

aclocal $ACLOCAL_FLAGS \
&& autoconf \
&& automake --add-missing --copy
