10 lines
126 B
Bash
Executable file
10 lines
126 B
Bash
Executable file
#!/bin/sh
|
|
libtoolize --copy --force --automake
|
|
rm -f config.cache
|
|
aclocal -I .
|
|
autoheader
|
|
automake -a
|
|
autoconf
|
|
echo "Done."
|
|
|
|
|