完成了屏幕管理器的框架

This commit is contained in:
fslongjin
2022-08-03 17:13:46 +08:00
parent 0dedafe1cd
commit 602ec281a6
9 changed files with 198 additions and 68 deletions

View File

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