1#!/bin/sh
2#
3
4# Hack for MacPorts
5cp /usr/local/share/aclocal/sdl.m4 m4
6
7# Prep
8make distclean
9aclocal --force -I /usr/local/share/aclocal
10libtoolize --force --copy
11autoreconf -fvi
12rm -rf autom4te.cache
13
14# Setup
15aclocal -I /usr/local/share/aclocal
16autoheader
17automake --foreign
18autoconf
19
20#./configure $*
21echo "Now you are ready to run ./configure"
22