summaryrefslogtreecommitdiff
path: root/autogen.sh
blob: b0e51a33d10dd829dda39954f2142d0b5fde8d85 (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 --copy
gtkdocize --copy
aclocal
autoconf
autoheader
automake --add-missing --copy --foreign
if [ -z "$NOCONFIGURE" ]; then
    ./configure $@
fi