droidVncServer/jni/libpng/autogen.sh

35 lines
877 B
Bash
Raw Normal View History

2012-06-10 14:34:51 -04:00
#! /bin/sh
# a quick hack script to generate necessary files from
# auto* tools.
#
# WARNING: if you run this you will change the versions
# of the tools which are used and, maybe, required!
2012-06-12 13:11:52 -04:00
# You can define your own replacements in your environment.
# $AUTOCONF, $AUTOMAKE, $AUTOHEADER, $AUTOPOINT, $ACLOCAL and $LIBTOOLIZE
touch Makefile.am configure.ac
2012-06-10 14:34:51 -04:00
{
2012-06-12 13:11:52 -04:00
LT=${LIBTOOLIZE-libtoolize}
echo "running $LT" >&2
$LT --force --copy --automake
2012-06-10 14:34:51 -04:00
} && {
2012-06-12 13:11:52 -04:00
AL=${ACLOCAL-aclocal}
echo "running $AL" >&2
$AL
2012-06-10 14:34:51 -04:00
} && {
2012-06-12 13:11:52 -04:00
AH=${AUTOHEADER-autoheader}
echo "running $AH [ignore the warnings]" >&2
$AH
2012-06-10 14:34:51 -04:00
} && {
2012-06-12 13:11:52 -04:00
AM=${AUTOMAKE-automake}
echo "running $AM" >&2
$AM --force-missing --foreign -a -c
2012-06-10 14:34:51 -04:00
} && {
2012-06-12 13:11:52 -04:00
AC=${AUTOCONF-autoconf}
echo "running $AC" >&2
$AC
2012-06-10 14:34:51 -04:00
} &&
2012-06-12 13:11:52 -04:00
echo "autogen complete" >&2 ||
echo "ERROR: autogen.sh failed, autogen is incomplete" >&2