8 lines
118 B
Bash
8 lines
118 B
Bash
|
#! /bin/sh -e
|
||
|
rm -rf autom4te.cache
|
||
|
aclocal -I m4
|
||
|
autoheader
|
||
|
libtoolize --copy
|
||
|
automake --add-missing --copy
|
||
|
autoconf
|