mirror of
https://github.com/outbackdingo/UltraGrid.git
synced 2026-03-22 04:40:30 +00:00
20 lines
196 B
Bash
Executable File
20 lines
196 B
Bash
Executable File
#! /bin/sh
|
|
set -e
|
|
|
|
[ -d m4 ] || mkdir m4
|
|
|
|
srcdir=`dirname $0`
|
|
test -z "$srcdir" && srcdir=.
|
|
|
|
ORIGDIR=`pwd`
|
|
|
|
cd $srcdir
|
|
aclocal
|
|
autoheader
|
|
autoconf
|
|
|
|
$srcdir/configure --enable-gpl $@
|
|
|
|
cd $ORIGDIR
|
|
|