mirror of
https://git.coom.tech/drummyfish/small3dlib.git
synced 2024-11-21 20:39:57 +01:00
5 lines
319 B
Bash
Executable file
5 lines
319 B
Bash
Executable file
#!/bin/bash
|
|
|
|
PROGRAM=testTerminal # change this to name of a program you want to compile :)
|
|
|
|
clear; clear; g++ -x c -g -fmax-errors=5 -pedantic -O3 -Wall -Wextra -Wstrict-prototypes -Wold-style-definition -Wno-unused-parameter -Wno-missing-field-initializers -o $PROGRAM $PROGRAM.c -lSDL2 2>&1 >/dev/null && ./$PROGRAM
|