source: rtems-graphics-toolkit/libpng-1.5.12/autogen.sh @ 1cb4ff2

Last change on this file since 1cb4ff2 was 1cb4ff2, checked in by Alexandru-Sever Horin <alex.sever.h@…>, on 08/06/12 at 11:43:44

Added libpng-1.5.12 update.

  • Property mode set to 100755
File size: 877 bytes
Line 
1#! /bin/sh
2# a quick hack script to generate necessary files from
3# auto* tools.
4#
5# WARNING: if you run this you will change the versions
6# of the tools which are used and, maybe, required!
7
8# You can define your own replacements in your environment.
9# $AUTOCONF,  $AUTOMAKE, $AUTOHEADER, $AUTOPOINT, $ACLOCAL and $LIBTOOLIZE
10
11touch Makefile.am configure.ac
12{
13   LT=${LIBTOOLIZE-libtoolize}
14   echo "running $LT" >&2
15   $LT --force --copy --automake
16} && {
17   AL=${ACLOCAL-aclocal}
18   echo "running $AL" >&2
19   $AL
20} && {
21   AH=${AUTOHEADER-autoheader}
22   echo "running $AH [ignore the warnings]" >&2
23   $AH
24} && {
25   AM=${AUTOMAKE-automake}
26   echo "running $AM" >&2
27   $AM --force-missing --foreign -a -c
28} && {
29   AC=${AUTOCONF-autoconf}
30   echo "running $AC" >&2
31   $AC
32} &&
33   echo "autogen complete" >&2 ||
34   echo "ERROR: autogen.sh failed, autogen is incomplete" >&2
Note: See TracBrowser for help on using the repository browser.