mirror of
https://github.com/DragonOS-Community/DragonOS.git
synced 2025-06-19 09:06:32 +00:00
🔧 更新了键盘驱动程序,使其适配vfs
This commit is contained in:
16
kernel/process/Makefile
Normal file
16
kernel/process/Makefile
Normal file
@ -0,0 +1,16 @@
|
||||
|
||||
all: procs.o process.o wait_queue.o
|
||||
|
||||
CFLAGS += -I .
|
||||
|
||||
|
||||
|
||||
procs.o: proc.S
|
||||
gcc -E proc.S > proc.s
|
||||
as $(ASFLAGS) -o procs.o proc.s
|
||||
|
||||
process.o: process.c
|
||||
gcc $(CFLAGS) -c process.c -o process.o
|
||||
|
||||
wait_queue.o: wait_queue.c
|
||||
gcc $(CFLAGS) -c wait_queue.c -o wait_queue.o
|
Reference in New Issue
Block a user