blob: 8aae0eff28f34c79b3fe82e572b5b1fef1f15ec9 [file] [log] [blame]
Matthew Barthae0e96c2017-01-20 13:54:59 -06001#!/bin/sh
2
3AUTOCONF_FILES="Makefile.in aclocal.m4 ar-lib autom4te.cache compile \
4 config.guess config.h.in config.h.in~ config.sub configure depcomp \
Matthew Barth8f1ce5a2020-08-04 12:23:14 -05005 install-sh ltmain.sh missing *libtool test-driver"
Matthew Barthae0e96c2017-01-20 13:54:59 -06006
7case $1 in
8 clean)
9 test -f Makefile && make maintainer-clean
10 for file in ${AUTOCONF_FILES}; do
11 find -name "$file" | xargs -r rm -rf
12 done
13 exit 0
14 ;;
15esac
16
17autoreconf -if
18echo 'Run "./configure ${CONFIGURE_FLAGS} && make"'