summaryrefslogtreecommitdiffhomepage
path: root/contrib/libpng/autogen.sh
blob: 5be104eb1d9faff14bdbf82f2c8185f470e9e4aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#! /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!

# You can define your own replacements in your environment.
# $AUTOCONF,  $AUTOMAKE, $AUTOHEADER, $AUTOPOINT, $ACLOCAL and $LIBTOOLIZE

touch Makefile.am configure.ac
{
   LT=${LIBTOOLIZE-libtoolize}
   echo "running $LT" >&2
   $LT --force --copy --automake
} && {
   AL=${ACLOCAL-aclocal}
   echo "running $AL" >&2
   $AL
} && {
   AH=${AUTOHEADER-autoheader}
   echo "running $AH [ignore the warnings]" >&2
   $AH
} && {
   AM=${AUTOMAKE-automake}
   echo "running $AM" >&2
   $AM --force-missing --foreign -a -c
} && {
   AC=${AUTOCONF-autoconf}
   echo "running $AC" >&2
   $AC
} &&
   echo "autogen complete" >&2 ||
   echo "ERROR: autogen.sh failed, autogen is incomplete" >&2