18 строки
347 B
Bash
Executable File
18 строки
347 B
Bash
Executable File
#!/bin/sh
|
|
|
|
srcdir=`dirname $0`
|
|
test -z "$srcdir" && srcdir=.
|
|
|
|
PROJECT=gtk-sharp-beans
|
|
|
|
autoreconf -v --force --install
|
|
|
|
if test x$NOCONFIGURE = x; then
|
|
echo Running $srcdir/configure $conf_flags "$@" ...
|
|
$srcdir/configure $conf_flags "$@" \
|
|
&& echo Now type \`make\' to compile $PROJECT || exit 1
|
|
else
|
|
echo Skipping configure process.
|
|
fi
|
|
|