aboutsummaryrefslogtreecommitdiff
path: root/make
diff options
context:
space:
mode:
authoriceyrazor <iceyrazor@mailfence.com>2026-03-08 21:03:40 -0500
committericeyrazor <iceyrazor@mailfence.com>2026-03-08 21:03:40 -0500
commit50595b3f3077ea5dccce79d26459a28e64ec0071 (patch)
tree2c95f06a358afdccff85c16d290aa7de0e0dc9e4 /make
parent1ec2c4cde9551c5bb43371d88629ebf4d8fc3c93 (diff)
renamed make to build.shHEADmain
Diffstat (limited to 'make')
-rwxr-xr-xmake6
1 files changed, 0 insertions, 6 deletions
diff --git a/make b/make
deleted file mode 100755
index 1956b80..0000000
--- a/make
+++ /dev/null
@@ -1,6 +0,0 @@
-#!/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