mirror of
https://git.coom.tech/drummyfish/small3dlib.git
synced 2024-11-22 20:49:58 +01:00
6 lines
155 B
Bash
6 lines
155 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
PROGRAM=testSDL
|
||
|
|
||
|
clear; clear; g++ -x c -g -fmax-errors=5 -pedantic -Wall -Wextra -o $PROGRAM $PROGRAM.c -lSDL2 2>&1 >/dev/null && ./$PROGRAM
|