blob: b97c72927406aa45e36e7c9b9b4e2dad8b6b7aca [file] [log] [blame]
Anthony Wilsond1c35322018-12-12 16:10:35 -06001#!/bin/sh -xe
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 \
5 install-sh ltmain.sh missing *libtool test-driver"
6
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 -i
18echo 'Run "./configure ${CONFIGURE_FLAGS} && make"'