11 lines
153 B
Bash
11 lines
153 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
# autogen.sh -- Autotools bootstrapping
|
||
|
#
|
||
|
|
||
|
libtoolize --copy --force
|
||
|
aclocal && \
|
||
|
autoheader && \
|
||
|
autoconf && \
|
||
|
automake --add-missing --copy
|