From 41e5298288c3d27d7a2ab33d889f21e474dd15d1 Mon Sep 17 00:00:00 2001 From: ghostie Date: Sat, 12 Jul 2025 14:55:04 -0500 Subject: [PATCH] added a recipe for valgrind --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index ad27600..edaa0d6 100644 --- a/Makefile +++ b/Makefile @@ -43,6 +43,9 @@ build/utils/buffer.o: src/utils/buffer.c run: all @$(OUT) tests/expr.pinky +valgrind: all + @valgrind $(OUT) tests/expr.pinky + clean: @$(ECHO) "Cleaning..." @$(RM) -f $(FILES) $(OUT)