mirror of
https://github.com/ultravideo/uvg266.git
synced 2024-11-23 18:14:06 +00:00
13 lines
189 B
Bash
13 lines
189 B
Bash
|
#!/usr/bin/bash
|
||
|
set -e
|
||
|
|
||
|
export CC=gcc
|
||
|
|
||
|
./autogen.sh
|
||
|
./configure \
|
||
|
--host=$MINGW_CHOST \
|
||
|
--build=$MINGW_CHOST \
|
||
|
--target=$MINGW_CHOST \
|
||
|
--disable-shared --enable-static
|
||
|
make
|