15 lines
350 B
Bash
Executable File
15 lines
350 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ "$1" == "clean" ]; then
|
|
make distclean
|
|
rm -rf aclocal.m4 autom4te.cache config.guess config.sub configure depcomp INSTALL install-sh ltmain.sh missing config.log config.status libtool COPYING
|
|
find . -name 'Makefile.in' -exec rm -f {} \;
|
|
exit;
|
|
fi
|
|
|
|
libtoolize --force
|
|
aclocal
|
|
autoconf
|
|
automake --add-missing --force
|
|
|