8 lines
129 B
Bash
8 lines
129 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
aclocal -I config &&
|
||
|
libtoolize --automake --copy
|
||
|
autoheader &&
|
||
|
automake --add-missing --include-deps --copy
|
||
|
autoconf
|