blob: 6b3c8b9347153e874658a8c2bd9b7d5853dcdf70 [file] [log] [blame]
Gunnar Mills9df13162017-03-08 15:00:08 -06001#!/bin/sh -xe
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 Williamsa7b1f4c2021-04-13 14:41:37 -050011 find . -name "$file" -print0 | xargs -0 -r rm -rf
Gunnar Mills9df13162017-03-08 15:00:08 -060012 done
13 exit 0
14 ;;
15esac
16
17autoreconf -i
Patrick Williamsa7b1f4c2021-04-13 14:41:37 -050018# shellcheck disable=SC2016
Gunnar Mills9df13162017-03-08 15:00:08 -060019echo 'Run "./configure ${CONFIGURE_FLAGS} && make"'