physfs/bootstrap
Ryan C. Gordon bd450d0e68 Initial add.
2002-05-10 09:16:38 +00:00

13 lines
240 B
Bash
Executable File

#!/bin/sh
set -e
echo "Initial preparation...this can take awhile, so sit tight..."
aclocal
libtoolize --automake --copy --force
autoheader
automake --foreign --add-missing --copy
autoconf
echo "You are now ready to run ./configure ..."