blob: 50b75b7ee911f6fae31e567ac82983d0c7f389c2 [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
11 find -name "$file" | xargs -r rm -rf
12 done
Vishwanatha81ee91f2016-08-30 17:17:13 +053013 exit 0
14 ;;
15esac
16
17autoreconf -i
18echo 'Run "./configure ${CONFIGURE_FLAGS} && make"'