mirror of
https://github.com/DragonOS-Community/DragonOS.git
synced 2025-06-10 08:06:48 +00:00
9 lines
98 B
Makefile
9 lines
98 B
Makefile
|
|
CFLAGS += -I .
|
|
|
|
|
|
all: syscall.o
|
|
|
|
syscall.o: syscall.c
|
|
$(CC) $(CFLAGS) -c syscall.c -o syscall.o
|