blob: 9fdf6746d252646ff7eeb936b26240036ee720b5 [file] [log] [blame]
Matthew Barthc91be8e2016-09-15 14:51:57 -05001#!/bin/sh
2
Matthew Barth44580de2016-09-27 10:27:28 -05003AUTOCONF_FILES="Makefile.in aclocal.m4 ar-lib autom4te.cache compile \
4 config.guess config.h.in config.sub configure depcomp install-sh \
5 ltmain.sh missing *libtool test-driver"
Matthew Barthc91be8e2016-09-15 14:51:57 -05006
7case $1 in
8 clean)
9 test -f Makefile && make maintainer-clean
10 for file in ${AUTOCONF_FILES}; do
Patrick Williamscabd9db2021-04-13 14:41:37 -050011 find . -name "$file" -print0 | xargs -0 -r rm -rf
Matthew Barthc91be8e2016-09-15 14:51:57 -050012 done
13 exit 0
14 ;;
15esac
16
17autoreconf -i
Patrick Williamscabd9db2021-04-13 14:41:37 -050018# shellcheck disable=SC2016
Matthew Barthc91be8e2016-09-15 14:51:57 -050019echo 'Run "./configure ${CONFIGURE_FLAGS} && make"'