mirror of
https://github.com/DragonOS-Community/DragonOS.git
synced 2025-06-08 22:36:48 +00:00
13 lines
173 B
Makefile
13 lines
173 B
Makefile
|
|
all: timer.o sleep.o
|
|
|
|
CFLAGS += -I .
|
|
|
|
timer.o: timer.c
|
|
$(CC) $(CFLAGS) -c timer.c -o timer.o
|
|
|
|
sleep.o: sleep.c
|
|
$(CC) $(CFLAGS) -c sleep.c -o sleep.o
|
|
|
|
clean:
|
|
echo "Done."
|