1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-09-18 15:04:57 +00:00
qb64/internal/c/parts/audio/decode/ogg/os/lnx/build.sh

12 lines
195 B
Bash
Executable file

#!/bin/sh
gcc -c ../../src/stb_vorbis.c -o src.o
echo "Press any key to continue..."
Pause()
{
OLDCONFIG=`stty -g`
stty -icanon -echo min 1 time 0
dd count=1 2>/dev/null
stty $OLDCONFIG
}
Pause