DragonOS/kernel/lib/libUI/Makefile

14 lines
301 B
Makefile
Raw Normal View History

2022-08-01 11:43:57 +00:00
all: screen_manager.o textui.o textui-render.o
2022-08-01 11:43:57 +00:00
CFLAGS += -I .
screen_manager.o: screen_manager.c
2022-08-03 09:13:46 +00:00
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