14 lines
288 B
Bash
Executable File
14 lines
288 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if test -z "$ACLOCAL_FLAGS"; then
|
|
ACLOCAL_FLAGS="-I m4"
|
|
else
|
|
ACLOCAL_FLAGS="$ACLOCAL_FLAGS -I m4"
|
|
fi
|
|
|
|
${LIBTOOLIZE:-libtoolize} --copy --automake --force
|
|
${ACLOCAL:-aclocal} $ACLOCAL_FLAGS
|
|
${AUTOHEADER:-autoheader}
|
|
${AUTOCONF:-autoconf}
|
|
${AUTOMAKE:-automake} --add-missing
|