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