aboutsummaryrefslogtreecommitdiff
path: root/config.def.mk
diff options
context:
space:
mode:
authoriamcheeseman <[email protected]>2026-05-25 15:47:08 -0400
committeriamcheeseman <[email protected]>2026-05-25 15:47:08 -0400
commit8122098e3854bf68ca63cc25e082ba51a27b8615 (patch)
tree471e7191211b0f66f1c7c7c4c81cf2589e6f3c8d /config.def.mk
parent1fb9ed0d6f627662f8d001afa761860d63d9f4a2 (diff)
I realized that Makefiles are dumb
Diffstat (limited to 'config.def.mk')
-rw-r--r--config.def.mk18
1 files changed, 0 insertions, 18 deletions
diff --git a/config.def.mk b/config.def.mk
deleted file mode 100644
index 47e829b..0000000
--- a/config.def.mk
+++ /dev/null
@@ -1,18 +0,0 @@
-CC=cc
-PLATFORM=gl
-
-OUT=demonchime
-
-DBFLAGS=-g -DTEENSY_DEBUG
-
-INCS=-Iteensy -Iteensy/platform/${PLATFORM}
-CFLAGS=${INCS} -Wall -Wextra -std=c99 -D_XOPEN_SOURCE=700 -O2
-LDFLAGS=-lm
-
-ifeq (${CONFIG},debug)
- CFLAGS+=${DBFLAGS}
-endif
-
-ifeq (${PLATFORM},gl)
- LDFLAGS+=-lglfw -lGL
-endif