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

9 lines
257 B
Bash
Raw Normal View History

2019-06-04 19:27:00 +02:00
#!/bin/bash
2020-06-21 11:39:52 +02:00
if [ "$#" -ne 1 ]; then
echo "ERROR: expecting one argument, the name of program without extension (e.g. \"helloWorld\")"
exit 0
fi
2019-06-04 19:27:00 +02:00
2020-06-21 11:39:52 +02:00
clear; clear; g++ -x c -g -fmax-errors=5 -pedantic -Wall -Wextra -o $1 $1.c -lSDL2 2>&1 >/dev/null && ./$1