DragonOS/user/libs/libc/Makefile
2022-05-06 00:25:32 +08:00

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