1# Copyright (C) 1999 Scott Thomas Haug <scott@id3.org>
2#
3# This file is free software; as a special exception the author gives
4# unlimited permission to copy and/or distribute it, with or without
5# modifications, as long as this notice is preserved.
6#
7# This program is distributed in the hope that it will be useful, but
8# WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
9# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
10
11#!/bin/sh
12rm -f config.cache
13rm -f acconfig.h
14echo "- aclocal."
15aclocal -I m4
16echo "- autoconf."
17autoconf
18echo "- acconfig."
19./acconfig
20echo "- autoheader."
21autoheader
22echo "- automake."
23automake -a
24echo "- Cleaning up after automake."
25rm -rf autom4te.cache
26rm -rf zlib/autom4te.cache
27exit
28