added release target

This commit is contained in:
nova
2025-06-16 10:59:02 +02:00
parent c1f2f7602a
commit 1f3a55df4b

View File

@ -5,5 +5,8 @@ d:
gcc -g -std=c89 ./main.c -o th -lncurses -ltinfo -Wall && gdb --tui ./th gcc -g -std=c89 ./main.c -o th -lncurses -ltinfo -Wall && gdb --tui ./th
v: 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