From 1f3a55df4bc2c7d3e5fa79ed4633058544728dd5 Mon Sep 17 00:00:00 2001 From: nova Date: Mon, 16 Jun 2025 10:59:02 +0200 Subject: [PATCH] added release target --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 1743ab1..1cc552f 100644 --- a/Makefile +++ b/Makefile @@ -5,5 +5,8 @@ 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 + gcc -g -std=c89 ./main.c -o th -lncurses -ltinfo && valgrind --leak-check=full --log-fd=9 9>>valgrind.log ./th + +rel: + gcc ./main.c -std=c89 -o th -lncurses -ltinfo -Wall -O2 -flto