12 lines
134 B
Text
12 lines
134 B
Text
|
#!/bin/sh
|
||
|
rm -f config.cache
|
||
|
rm -f acconfig.h
|
||
|
#touch acconfig.h
|
||
|
#aclocal -I m4
|
||
|
aclocal
|
||
|
autoconf
|
||
|
autoheader
|
||
|
#acconfig
|
||
|
automake -a
|
||
|
exit
|