summaryrefslogtreecommitdiffstats
path: root/bootstrap.sh
blob: 412550fc2c2ffd7b2eba8b6fe12b9f089e0d7bf5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh

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

case $1 in
    clean)
        test -f Makefile && make maintainer-clean
        rm -rf ${AUTOCONF_FILES}

        exit 0
        ;;
esac

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