pcsxr-1.9.92
[pcsx_rearmed.git] / autogen.sh
CommitLineData
ef79bbde
P
1#!/bin/sh
2# Run this to generate all the initial makefiles, etc.
3# Additional options go to configure.
4
5echo "Rebuilding ./configure with autoreconf..."
6autoreconf -f -i
7if [ $? -ne 0 ]; then
8 echo "autoreconf failed"
9 exit $?
10fi
11
12./configure --enable-maintainer-mode "$@"