1#!/bin/sh -e
2#
3# cphipps - short script to start building from a maintainer-clean'ed tree
4#
5mkdir -p autotools
6aclocal -I autotools
7autoheader
8automake --add-missing
9autoconf
10