mirror of
https://github.com/DragonOS-Community/DragonOS.git
synced 2025-06-15 21:26:47 +00:00
13 lines
165 B
Makefile
13 lines
165 B
Makefile
all: libc
|
|
|
|
CFLAGS += -I .
|
|
|
|
|
|
libc: unistd.o fcntl.o
|
|
|
|
unistd.o: unistd.c
|
|
gcc $(CFLAGS) -c unistd.c -o unistd.o
|
|
|
|
fcntl.o: fcntl.c
|
|
gcc $(CFLAGS) -c fcntl.c -o fcntl.o
|