mirror of
https://github.com/DragonOS-Community/DragonOS.git
synced 2025-06-14 20:26:48 +00:00
11 lines
138 B
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
|