10 lines
119 B
Bash
Executable file
10 lines
119 B
Bash
Executable file
#!/bin/sh
|
|
libtoolize --copy --force --automake || exit 1
|
|
rm -f config.cache
|
|
aclocal
|
|
autoheader
|
|
automake -a
|
|
autoconf
|
|
|
|
|
|
|