From d2bde3a31ca8050ed0e11d29f1ac117ed4202f50 Mon Sep 17 00:00:00 2001 From: nova Date: Sun, 15 Jun 2025 16:54:05 +0200 Subject: [PATCH] added valgrind in makefile --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index 73e2312..1743ab1 100644 --- a/Makefile +++ b/Makefile @@ -3,3 +3,7 @@ all: d: gcc -g -std=c89 ./main.c -o th -lncurses -ltinfo -Wall && gdb --tui ./th + +v: + gcc -g -std=c89 ./main.c -o th -lncurses -ltinfo && valgrind --log-fd=9 9>>valgrind.log ./th +