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