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