🔧 更改目录结构,将定时器独立出来

将定时器独立出来
This commit is contained in:
fslongjin
2022-07-11 10:56:24 +08:00
parent ee0b5ed3fd
commit eb67b612c4
8 changed files with 27 additions and 83 deletions

10
kernel/time/Makefile Normal file
View File

@ -0,0 +1,10 @@
all: timer.o
CFLAGS += -I .
timer.o: timer.c
gcc $(CFLAGS) -c timer.c -o timer.o
clean:
echo "Done."