new: 初步完成了textui的基本显示功能

This commit is contained in:
fslongjin
2022-08-04 21:40:26 +08:00
parent 36d55511ba
commit 17d5fea2cf
9 changed files with 615 additions and 104 deletions

View File

@ -1,5 +1,5 @@
all: screen_manager.o textui.o
all: screen_manager.o textui.o textui-render.o
CFLAGS += -I .
@ -7,4 +7,7 @@ screen_manager.o: screen_manager.c
gcc $(CFLAGS) -c screen_manager.c -o screen_manager.o
textui.o: textui.c
gcc $(CFLAGS) -c textui.c -o textui.o
gcc $(CFLAGS) -c textui.c -o textui.o
textui-render.o: textui-render.c
gcc $(CFLAGS) -c textui-render.c -o textui-render.o