11 lines
134 B
Bash
Executable File
11 lines
134 B
Bash
Executable File
#!/bin/sh
|
|
aclocal -I m4
|
|
libtoolize
|
|
autoheader
|
|
automake --add-missing
|
|
autoconf
|
|
|
|
if [ -z "$NOCONFIGURE" ]; then
|
|
./configure "$@"
|
|
fi
|