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