File: autogen.sh

package info (click to toggle)
libungif 3.0-3
  • links: PTS
  • area: main
  • in suites: potato
  • size: 1,600 kB
  • ctags: 984
  • sloc: ansic: 11,559; sh: 1,970; makefile: 144; perl: 54
file content (13 lines) | stat: -rwxr-xr-x 314 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/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."

aclocal
autoconf
automake --foreign --add-missing
configure $*

exit 0