Matthew Barth | 5e60ba5 | 2016-09-26 13:40:01 -0500 | [diff] [blame] | 1 | #!/bin/sh |
| 2 | |
| 3 | AUTOCONF_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 | |
| 7 | case $1 in |
| 8 | clean) |
| 9 | test -f Makefile && make maintainer-clean |
| 10 | for file in ${AUTOCONF_FILES}; do |
Manojkiran Eda | 2ea71fa | 2020-10-10 08:23:54 +0530 | [diff] [blame] | 11 | find . -name "$file" | xargs -0 -r rm -rf |
Matthew Barth | 5e60ba5 | 2016-09-26 13:40:01 -0500 | [diff] [blame] | 12 | done |
| 13 | exit 0 |
| 14 | ;; |
| 15 | esac |
| 16 | |
| 17 | autoreconf -i |
Manojkiran Eda | 2ea71fa | 2020-10-10 08:23:54 +0530 | [diff] [blame] | 18 | # shellcheck disable=SC2016 |
Matthew Barth | 5e60ba5 | 2016-09-26 13:40:01 -0500 | [diff] [blame] | 19 | echo 'Run "./configure ${CONFIGURE_FLAGS} && make"' |