mirror of
https://github.com/DragonOS-Community/DragonOS.git
synced 2025-06-08 22:36:48 +00:00
7 lines
129 B
Makefile
7 lines
129 B
Makefile
|
|
all: screen_manager.o
|
|
|
|
CFLAGS += -I .
|
|
|
|
screen_manager.o: screen_manager.c
|
|
gcc $(CFLAGS) -c screen_manager.c -o screen_manager.o
|