Files
th/Makefile
2025-07-09 01:09:45 +02:00

13 lines
376 B
Makefile

all:
gcc ./main.c -std=c89 -o th -lncurses -ltinfo -Wall -O2
d:
gcc -g -std=c89 ./main.c -o th -lncurses -ltinfo -Wall -O2 && gdb --tui ./th
v:
gcc -g -std=c89 ./main.c -o th -lncurses -ltinfo -O3 && valgrind --leak-check=full --track-origins=yes --show-leak-kinds=all --log-fd=9 9>>valgrind.log ./th
rel:
gcc ./main.c -std=c89 -o th -lncurses -ltinfo -Wall -O2 -flto