pcsxr/autogen.sh
2014-02-16 09:09:53 +00:00

16 lines
324 B
Bash
Executable File

#!/bin/sh
# Run this to generate all the initial makefiles, etc.
# Additional options go to configure.
echo "Rebuilding ./configure with autoreconf..."
if [ ! -d "include" ]; then
mkdir "include"
fi
autoreconf -f -i
if [ $? -ne 0 ]; then
echo "autoreconf failed"
exit $?
fi
./configure --enable-maintainer-mode "$@"