aboutsummaryrefslogtreecommitdiff
path: root/autogen.sh
blob: 69607ccd1c0d0dde14eb540c43de3f18a8dfdc31 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/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 .
dothis autoheader
dothis automake -a
dothis autoconf

echo 'Success, now continue with ./configure'
echo 'Use configure --help for detailed help.'