mirror of
https://github.com/DragonOS-Community/DragonOS.git
synced 2025-06-15 17:16:47 +00:00
11 lines
142 B
Makefile
11 lines
142 B
Makefile
|
|
all: wait.o stat.o
|
|
|
|
CFLAGS += -I .
|
|
|
|
|
|
wait.o: wait.c
|
|
$(CC) $(CFLAGS) -c wait.c -o wait.o
|
|
|
|
stat.o: stat.c
|
|
$(CC) $(CFLAGS) -c stat.c -o stat.o
|