7 lines
213 B
Bash
Executable File
7 lines
213 B
Bash
Executable File
#!/bin/sh
|
|
if [[ "$1" == "debug" ]]; then
|
|
clang -O3 -o game-of-life main.c `sdl2-config --cflags --libs` -lm -Wall -fsanitize=address -g
|
|
else
|
|
clang -O3 -o game-of-life main.c `sdl2-config --cflags --libs` -lm
|
|
fi
|