blob: c3d21c85dd3bfdebd054d5f58e83dbb7c4b4b631 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/sh
# Run this to generate all the initial makefiles, etc.
test -n "$srcdir" || srcdir=$(dirname "$0")
test -n "$srcdir" || srcdir=.
(
cd "$srcdir" &&
touch config.rpath &&
AUTOPOINT='intltoolize --automake --copy' autoreconf -fiv
) || exit
test -n "$NOCONFIGURE" || "$srcdir/configure" "$@"
|