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