summaryrefslogtreecommitdiff
path: root/autogen.sh
blob: 6948a790deddaa2a52f85c35495039285c69ca93 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh
aclocal || exit 1
autoheader || exit 1
glib-gettextize -f -c || exit 1
gtkdocize --copy || exit 1
intltoolize -c -f || exit 1
libtoolize -c || exit 1
autoconf || exit 1
automake -a -c || exit 1
if test -z "$NOCONFIGURE"; then
	./configure $*
fi