summaryrefslogtreecommitdiffstats
path: root/bootstrap.sh
blob: 1be749322b9605d27ae37014316a43d2429faa39 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/sh
set -e
set -x

AUTOCONF_FILES="Makefile.in aclocal.m4 ar-lib autom4te.cache compile \
        config.guess config.h.in config.sub configure depcomp install-sh \
        ltmain.sh missing *libtool test-driver"

case $1 in
    clean)
        test -f Makefile && make maintainer-clean
        for file in ${AUTOCONF_FILES}; do
            find -name "$file" | xargs -r rm -rf
        done
        exit 0
        ;;
esac

autoreconf -vfi
echo 'Run "./configure ${CONFIGURE_FLAGS} && make"'
OpenPOWER on IntegriCloud