9 lines
120 B
Bash
Executable file
9 lines
120 B
Bash
Executable file
#!/bin/sh
|
|
rm -f config.cache
|
|
rm -f acconfig.h
|
|
aclocal -I m4
|
|
autoconf
|
|
autoheader
|
|
libtoolize --automake
|
|
automake -a
|
|
exit
|