9 lines
127 B
Bash
9 lines
127 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
aclocal &&
|
||
|
autoreconf --install &&
|
||
|
libtoolize &&
|
||
|
autoconf &&
|
||
|
automake --add-missing &&
|
||
|
automake
|