mirror of
https://github.com/DragonOS-Community/DragonOS.git
synced 2025-06-09 02:46:47 +00:00
9 lines
88 B
Makefile
9 lines
88 B
Makefile
|
|
all: video.o
|
|
|
|
CFLAGS += -I .
|
|
|
|
|
|
video.o: video.c
|
|
$(CC) $(CFLAGS) -c video.c -o video.o
|