11 lines
213 B
Bash
11 lines
213 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
set -x
|
||
|
|
||
|
test -d autom4te.cache && rm -rf autom4te.cache
|
||
|
libtoolize --install --copy || exit 1
|
||
|
aclocal -I config || exit 1
|
||
|
autoheader || exit 1
|
||
|
autoconf || exit 1
|
||
|
automake --add-missing --copy || exit 1
|