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
Miloslav Číž f658d331ec Update
2020-06-21 17:40:17 +02:00

27 lines
486 B
Bash
Executable file

#!/bin/bash
# Make script for raycastlib programs.
# by drummyfish
# released under CC0 1.0, public domain
if [ "$#" -ne 1 ]; then
echo "ERROR: expecting one argument, the name of program without extension (e.g. \"helloWorld\")"
exit 0
fi
link=""
if [ "$1" = "testSDL" ]; then
link="-lSDL2"
fi
clear
clear
flags="-x c -g -O3 -std=c99 -pedantic -Wall -Wextra -o $1 $1.c ${link}"
compiler=gcc
#compiler=clang
echo "making:" ${compiler} ${flags}
${compiler} ${flags} && ./$1