added unicode support
This commit is contained in:
6
Makefile
6
Makefile
@ -1,12 +1,12 @@
|
||||
all:
|
||||
gcc ./main.c -std=c89 -o th -lncurses -ltinfo -Wall -O2
|
||||
gcc ./main.c -std=c89 -o th -lncursesw -ltinfow -Wall
|
||||
|
||||
d:
|
||||
gcc -g -std=c89 ./main.c -o th -lncurses -ltinfo -Wall -O2 && gdb --tui ./th
|
||||
gcc -g -std=c89 ./main.c -o th -lncursesw -ltinfow -Wall && 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
|
||||
gcc ./main.c -std=c89 -o th -lncursesw -ltinfow -Wall -O2 -flto
|
||||
|
||||
|
Reference in New Issue
Block a user