blob: 49bf2b0e5389043d2cddd16b13ade0035ec0c51b [file] [log] [blame]
Matthew Barth71222442016-10-04 16:10:01 -05001#!/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 m4"
6
7case $1 in
8 clean)
9 test -f Makefile && make maintainer-clean
10 for file in ${AUTOCONF_FILES}; do
Patrick Williams2b7789c2021-04-13 14:41:37 -050011 find . -name "$file" -print0 | xargs -0 -r rm -rf
Matthew Barth71222442016-10-04 16:10:01 -050012 done
13 exit 0
14 ;;
15esac
16
17autoreconf -i
Patrick Williams2b7789c2021-04-13 14:41:37 -050018# shellcheck disable=SC2016
Matthew Barth71222442016-10-04 16:10:01 -050019echo 'Run "./configure ${CONFIGURE_FLAGS} && make"'