1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-09-20 07:54:46 +00:00
QB64-PE/internal/c/parts/audio/libresample/os/lnx/build.sh

15 lines
373 B
Bash

#!/bin/sh
gcc -c ../../src/filterkit.c -o temp/filterkit.o
gcc -c ../../src/resample.c -o temp/resample.o
gcc -c ../../src/resamplesubs.c -o temp/resamplesubs.o
ar rcs src.a temp/filterkit.o temp/resample.o temp/resamplesubs.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