File: autogen.sh

package info (click to toggle)
numlockx 1.1-9
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 1,412 kB
  • ctags: 39
  • sloc: sh: 9,079; ansic: 214; makefile: 124
file content (20 lines) | stat: -rwxr-xr-x 281 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/sh

srcdir=`dirname $0`
test -z "$srcdir" && srcdir=.

ORIGDIR=`pwd`
cd $srcdir

rm -rf config.guess config.sub ltmain.sh

autoreconf -v --install || exit 1
cd $ORIGDIR || exit $?

$srcdir/configure --enable-maintainer-mode "$@"

make distclean

rm -rf autom4te.cache

#EOF