Codebase list pcsxr / a9e3b262-8fac-4cc1-880c-29d70bef68e4/main autogen.sh
a9e3b262-8fac-4cc1-880c-29d70bef68e4/main

Tree @a9e3b262-8fac-4cc1-880c-29d70bef68e4/main (Download .tar.gz)

autogen.sh @a9e3b262-8fac-4cc1-880c-29d70bef68e4/mainraw · history · blame

#!/bin/sh
# Run this to generate all the initial makefiles, etc.
# Additional options go to configure.

echo "Rebuilding ./configure with autoreconf..."
autoreconf -f -i
if [ $? -ne 0 ]; then
  echo "autoreconf failed"
  exit $?
fi

./configure --enable-maintainer-mode "$@"