mirror of
https://github.com/DragonOS-Community/DragonOS.git
synced 2025-06-09 15:26:47 +00:00
14 lines
301 B
Makefile
14 lines
301 B
Makefile
|
|
all: screen_manager.o textui.o textui-render.o
|
|
|
|
CFLAGS += -I .
|
|
|
|
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
|
|
|
|
textui-render.o: textui-render.c
|
|
gcc $(CFLAGS) -c textui-render.c -o textui-render.o
|