fluxbox/autogen.sh

23 lines
480 B
Bash
Raw Normal View History

2002-02-11 12:08:37 +00:00
#!/bin/sh
2003-05-14 16:41:48 +00:00
# autogen script for fluxbox.
2002-03-02 11:59:07 +00:00
2003-05-14 16:41:48 +00:00
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
}
2002-03-02 11:59:07 +00:00
2003-05-19 22:44:51 +00:00
libtoolize --copy --force --automake
rm -f config.cache
2003-05-14 16:41:48 +00:00
dothis aclocal -I .
dothis autoheader
dothis automake -a
dothis autoconf
echo 'Succes, now continue with ./configure'
echo 'Use configure --help for detailed help.'