From abe3a2dbb1bbd41704d52074c2d14c16e8e4139b Mon Sep 17 00:00:00 2001 From: htom Date: Sat, 3 Jan 2026 20:43:51 +0100 Subject: [PATCH] changed makefile run command to run with valgrind and default data file --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ad1e8a4..427457b 100644 --- a/Makefile +++ b/Makefile @@ -57,6 +57,6 @@ clean: rm -rf $(BUILDDIR) run: all - ./$(BUILDDIR)/$(APPNAME)$(EXT) + valgrind --leak-check=full ./$(BUILDDIR)/$(APPNAME)$(EXT) ./data/Circuit.duckdb .PHONY: all clean run