summaryrefslogtreecommitdiff
path: root/autogen.sh
blob: b08190da6c36af5282bd7a242de7ef176e062119 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh
# Run this to generate all the initial makefiles, etc.

libtoolize --force --copy
intltoolize --force
gtkdocize --copy
aclocal
autoconf
autoheader
automake --add-missing --copy --foreign
if [ -z "$NOCONFIGURE" ]; then
    ./configure $@
fi