blob: 0b2d4a7a42a257da4c59829866982739cd4f3fab [file] [log] [blame]
Patrick Venturee6206562018-03-08 15:36:53 -08001#!/bin/sh
2
3AUTOCONF_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"
6
7case $1 in
8 clean)
9 test -f Makefile && make maintainer-clean
10 for file in ${AUTOCONF_FILES}; do
Patrick Williamse8adaa02021-04-13 14:41:37 -050011 find . -name "$file" -print0 | xargs -0 -r rm -rf
Patrick Venturee6206562018-03-08 15:36:53 -080012 done
13 exit 0
14 ;;
15esac
16
17autoreconf -i
Patrick Williamse8adaa02021-04-13 14:41:37 -050018# shellcheck disable=SC2016
Patrick Venturee6206562018-03-08 15:36:53 -080019echo 'Run "./configure ${CONFIGURE_FLAGS} && make"'
20