aboutsummaryrefslogtreecommitdiffstats
path: root/autogen.sh
blob: 2934552ed0daa9342b4f5587d8414164a9b6dcd9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/sh

LIBTOOLIZE=`which glibtoolize 2>/dev/null`
case "$LIBTOOLIZE" in
	/* )	;;
	*  )	LIBTOOLIZE=`which libtoolize 2>/dev/null`
		case "$LIBTOOLIZE" in
			/* )	;;
			*  )	LIBTOOLIZE=libtoolize
				;;
		esac
		;;
esac

autoheader &&
$LIBTOOLIZE --force &&
aclocal &&
automake -a &&
autoconf