2015-07-01 07:44:53 -07:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
set -x
|
|
|
|
|
|
|
|
test -d autom4te.cache && rm -rf autom4te.cache
|
2015-07-01 09:17:08 -07:00
|
|
|
test -d config && rm -rf config || exit 1
|
|
|
|
mkdir config || exit 1
|
2015-07-01 07:44:53 -07:00
|
|
|
libtoolize --install --copy || exit 1
|
|
|
|
aclocal -I config || exit 1
|
|
|
|
autoheader || exit 1
|
|
|
|
autoconf || exit 1
|
|
|
|
automake --add-missing --copy || exit 1
|