1#!/bin/sh
2
3# autogen.sh - Create or update the prebuilt autotools materials from
4# a checked out source tree.  It is not necessarily to run this
5# command when building from a release tarball.
6
7# It is common for autogen scripts to check autotools versions or
8# perform other safety checks.  Perhaps we will do that some day.
9# For now just run the necessary commands.
10
11autoheader
12autoconf
13rm -rf autom4te.cache
14