summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTazyFoundSoup <gardendistrict0x0@outlook.com>2026-04-22 17:25:02 +1000
committerTazyFoundSoup <gardendistrict0x0@outlook.com>2026-04-22 17:25:02 +1000
commit6c82c53367234cd37abf062e4d82b5e360fffb8e (patch)
tree0ce8a5940a1dd5fbe72fb23b217285f2ef02d53e
parent2307dab6bf0e51b3e013f99ff6f84163da8b3d55 (diff)
feat(Makefile): Add 'gdb' build command for launching with .gdbinit
config
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 517930c..3a12815 100644
--- a/Makefile
+++ b/Makefile
@@ -50,4 +50,7 @@ test-png: clean
test: test-png
-.PHONY: all clean debug release asan test test-png
+gdb: debug
+ gdb -x debug/.gdbinit
+
+.PHONY: all clean debug release asan test test-png gdb