fluxbox/autogen.sh
2004-01-16 10:28:15 +00:00

22 lines
498 B
Bash
Executable file

#!/bin/sh
# autogen script for fluxbox.
dothis() {
echo "Executing: $*"
echo
if ! $* ;then
echo -e '\n ERROR: Carefully read the error message and'
echo ' try to figure out what went wrong.'
exit 1
fi
}
libtoolize --copy --force --automake
rm -f config.cache
dothis aclocal -I . ${ACLOCAL_FLAGS}
dothis autoheader
dothis automake -a
dothis autoconf
echo 'Success, now continue with ./configure'
echo 'Use configure --help for detailed help.'