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