19 lines
165 B
Text
19 lines
165 B
Text
|
#!/bin/sh
|
||
|
|
||
|
rm -f config.cache
|
||
|
rm -f acconfig.cache
|
||
|
|
||
|
aclocal
|
||
|
autoconf
|
||
|
#acconfig
|
||
|
autoheader
|
||
|
automake -a
|
||
|
|
||
|
cd libltdl
|
||
|
|
||
|
aclocal
|
||
|
autoconf
|
||
|
#acconfig
|
||
|
autoheader
|
||
|
automake -a
|