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
|