[go: up one dir, main page]

Menu

[733960]: / autogen.sh  Maximize  Restore  History

Download this file

26 lines (17 with data), 445 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
#!/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
libtoolize --automake
automake --add-missing
autoconf
automake
cd $THEDIR
$srcdir/configure $*
exit 0