mirror of
https://gitlab.uni-freiburg.de/opensourcevdi/spice-protocol
synced 2025-12-26 14:18:31 +00:00
Codegen generates code specific to spice-common submodule. It's not meant as a generic protocol header or specification. See discussion and commits about spice-common codegen re-import. Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
20 lines
329 B
Bash
Executable File
20 lines
329 B
Bash
Executable File
#! /bin/sh
|
|
|
|
set -e # exit on errors
|
|
|
|
srcdir=`dirname $0`
|
|
test -z "$srcdir" && srcdir=.
|
|
|
|
|
|
(
|
|
cd "$srcdir"
|
|
autoreconf --verbose --force --install
|
|
)
|
|
|
|
CONFIGURE_ARGS="--enable-maintainer-mode"
|
|
|
|
if [ -z "$NOCONFIGURE" ]; then
|
|
echo "Running configure with $CONFIGURE_ARGS $@"
|
|
"$srcdir/configure" $CONFIGURE_ARGS "$@"
|
|
fi
|