awesome/autogen.sh

14 lines
374 B
Bash
Raw Normal View History

2008-01-05 11:35:00 +01:00
#!/bin/sh
# Change to source tree
srcdir=`dirname "$0"`
[ -z "$srcdir" ] || cd "$srcdir"
2008-01-05 11:35:00 +01:00
echo "Generating configure files... may take a while."
autoreconf --install --force && \
echo "Preparing was successful if there was no error messages above." && \
echo "Now type:" && \
echo " ./configure && make" && \
echo "Run './configure --help' for more information"