aboutsummaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh22
1 files changed, 22 insertions, 0 deletions
diff --git a/autogen.sh b/autogen.sh
new file mode 100755
index 0000000..69607cc
--- /dev/null
+++ b/autogen.sh
@@ -0,0 +1,22 @@
1#!/bin/sh
2# autogen script for fluxbox.
3
4dothis() {
5 echo "Executing: $*"
6 echo
7 if ! $* ;then
8 echo -e '\n ERROR: Carefully read the error message and'
9 echo ' try to figure out what went wrong.'
10 exit 1
11 fi
12}
13
14libtoolize --copy --force --automake
15rm -f config.cache
16dothis aclocal -I .
17dothis autoheader
18dothis automake -a
19dothis autoconf
20
21echo 'Success, now continue with ./configure'
22echo 'Use configure --help for detailed help.'