mirror of
https://github.com/DragonOS-Community/DragonOS.git
synced 2025-06-10 16:26:48 +00:00
13 lines
169 B
Makefile
13 lines
169 B
Makefile
|
|
all: timer.o sleep.o
|
|
|
|
CFLAGS += -I .
|
|
|
|
timer.o: timer.c
|
|
gcc $(CFLAGS) -c timer.c -o timer.o
|
|
|
|
sleep.o: sleep.c
|
|
gcc $(CFLAGS) -c sleep.c -o sleep.o
|
|
|
|
clean:
|
|
echo "Done."
|