summaryrefslogtreecommitdiffstats
path: root/giflib-4.1.6/autogen.sh
diff options
context:
space:
mode:
Diffstat (limited to 'giflib-4.1.6/autogen.sh')
-rwxr-xr-xgiflib-4.1.6/autogen.sh25
1 files changed, 0 insertions, 25 deletions
diff --git a/giflib-4.1.6/autogen.sh b/giflib-4.1.6/autogen.sh
deleted file mode 100755
index 6ed1828..0000000
--- a/giflib-4.1.6/autogen.sh
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/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