Patrick Williams | f4e58e6 | 2016-08-12 21:57:52 -0500 | [diff] [blame] | 1 | #!/bin/sh |
| 2 | |
Matthew Barth | 41cae2b | 2016-09-27 11:10:45 -0500 | [diff] [blame] | 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" |
Patrick Williams | f4e58e6 | 2016-08-12 21:57:52 -0500 | [diff] [blame] | 6 | |
| 7 | case $1 in |
| 8 | clean) |
| 9 | test -f Makefile && make maintainer-clean |
Patrick Williams | b898314 | 2016-09-15 21:00:27 -0500 | [diff] [blame] | 10 | for file in ${AUTOCONF_FILES}; do |
| 11 | find -name "$file" | xargs -r rm -rf |
| 12 | done |
Patrick Williams | f4e58e6 | 2016-08-12 21:57:52 -0500 | [diff] [blame] | 13 | exit 0 |
| 14 | ;; |
| 15 | esac |
| 16 | |
| 17 | autoreconf -i |
| 18 | echo 'Run "./configure ${CONFIGURE_FLAGS} && make"' |