blob: 9fdf6746d252646ff7eeb936b26240036ee720b5 [file] [log] [blame]
Vishwanatha81ee91f2016-08-30 17:17:13 +05301#!/bin/sh
2
Patrick Williamsf5211452016-11-09 21:58:38 -06003AUTOCONF_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"
Vishwanatha81ee91f2016-08-30 17:17:13 +05306
7case $1 in
8 clean)
9 test -f Makefile && make maintainer-clean
Patrick Williamsf5211452016-11-09 21:58:38 -060010 for file in ${AUTOCONF_FILES}; do
Patrick Williams7252bea2021-04-13 14:41:37 -050011 find . -name "$file" -print0 | xargs -0 -r rm -rf
Patrick Williamsf5211452016-11-09 21:58:38 -060012 done
Vishwanatha81ee91f2016-08-30 17:17:13 +053013 exit 0
14 ;;
15esac
16
17autoreconf -i
Patrick Williams7252bea2021-04-13 14:41:37 -050018# shellcheck disable=SC2016
Vishwanatha81ee91f2016-08-30 17:17:13 +053019echo 'Run "./configure ${CONFIGURE_FLAGS} && make"'