DragonOS/user/libs/libc/sys/Makefile

11 lines
138 B
Makefile

all: wait.o stat.o
CFLAGS += -I .
wait.o: wait.c
gcc $(CFLAGS) -c wait.c -o wait.o
stat.o: stat.c
gcc $(CFLAGS) -c stat.c -o stat.o