blob: 415488785787d24134e6058b2f5c16ed65e5bfe9 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/sh
# Run this to generate all the initial makefiles, etc.
echo "autogen.sh: running: intltoolize --force"
intltoolize --force || exit 1
autoreconf -vif || exit 1
if test -z "$NOCONFIGURE"; then
./configure --enable-maintainer-mode "$@" && echo "Now type \`make' to compile" || exit 1
fi
|