ede/autogen.sh

21 lines
391 B
Bash
Raw Normal View History

2007-03-17 14:28:25 +03:00
#!/bin/sh
2009-02-24 16:39:50 +03:00
# to save me from typing :P
if [ "$1" = "--compile" ]; then
compile=1
fi
if aclocal -I m4 && autoheader && autoconf; then
2007-03-17 14:28:25 +03:00
echo ""
echo "Now run ./configure [OPTIONS]"
echo "or './configure --help' to see them"
2009-02-24 16:39:50 +03:00
if [ $compile ]; then
./configure --enable-debug --prefix=/opt/ede && jam
fi
2007-03-17 14:28:25 +03:00
else
echo ""
2009-02-24 16:39:50 +03:00
echo "We failed :(. There should be some output, right?"
2007-03-17 14:28:25 +03:00
exit 1
fi