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

14 lines
355 B
Bash
Executable file

#!/bin/sh
gcc -s -c -w -Wall ../../src/Gamepad_linux.c -o temp/Gamepad_linux.o
gcc -s -c -w -Wall ../../src/Gamepad_private.c -o temp/Gamepad_private.o
ar rcs src.a temp/Gamepad_private.o temp/Gamepad_linux.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