From 9f87173d4398b045b8d5b76cbb23a9976aafb0b6 Mon Sep 17 00:00:00 2001 From: iceyrazor Date: Fri, 6 Feb 2026 03:57:48 -0600 Subject: - license and readme - removed make file inplace of make shell script --- make | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100755 make (limited to 'make') diff --git a/make b/make new file mode 100755 index 0000000..1956b80 --- /dev/null +++ b/make @@ -0,0 +1,6 @@ +#!/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 -- cgit v1.3