1#!/bin/sh
2# $Id$
3
4# Remove any previously created cache files
5test -w config.cache && rm config.cache
6test -w config.cross.cache && rm config.cross.cache
7
8# Regenerate configuration files
9echo " ========aclocal============="
10aclocal
11echo " ======== / aclocal ============="
12echo " ========Automake============="
13automake --add-missing
14echo " ======== / Automake============="
15echo " ========autoconf============="
16autoconf
17echo " ======== / autoconf============="
18
19# Run configure for this platform
20#./configure $*
21echo "Now you are ready to run ./configure"
22