[go: up one dir, main page]

Menu

[92de13]: / autogen.sh  Maximize  Restore  History

Download this file

27 lines (18 with data), 509 Bytes

 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
#!/bin/sh
# This script runs commands necessary to generate a Makefile for libgif.
echo "Warning: This script will run configure for you -- if you need to pass"
echo " arguments to configure, please give them as arguments to this script."
srcdir=`dirname $0`
test -z "$srcdir" && srcdir=.
THEDIR="`pwd`"
cd $srcdir
aclocal
autoheader
case `uname` in Darwin*) glibtoolize --automake ;;
*) libtoolize --automake ;; esac
automake --add-missing
autoconf
automake
cd $THEDIR
$srcdir/configure $*
exit 0