1
0
Fork 0
mirror of https://git.coom.tech/drummyfish/small3dlib.git synced 2024-11-21 20:39:57 +01:00
small3dlib/programs/make.sh

6 lines
319 B
Bash
Raw Normal View History

2019-04-28 19:31:13 +02:00
#!/bin/bash
2022-05-26 19:54:30 +02:00
PROGRAM=testTerminal # change this to name of a program you want to compile :)
2019-04-28 19:31:13 +02:00
2020-06-17 18:12:58 +02:00
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