9 lines
143 B
Bash
9 lines
143 B
Bash
|
#!/bin/sh
|
||
|
aclocal && \
|
||
|
autoconf && \
|
||
|
libtoolize && \
|
||
|
automake --add-missing && \
|
||
|
automake
|
||
|
|
||
|
# autoreconf --force --install -I config -I m4 && \
|