9 lines
115 B
Bash
9 lines
115 B
Bash
|
#!/bin/sh
|
||
|
set -x
|
||
|
aclocal
|
||
|
autoheader
|
||
|
libtoolize --automake --copy
|
||
|
automake --foreign --add-missing --copy
|
||
|
autoconf
|
||
|
|