mirror of
https://github.com/DragonOS-Community/DragonOS.git
synced 2025-06-29 20:23:24 +00:00
new: kfifo
This commit is contained in:
@ -3,7 +3,7 @@ CFLAGS += -I .
|
||||
|
||||
kernel_common_subdirs:=libELF math
|
||||
|
||||
all: glib.o printk.o cpu.o bitree.o
|
||||
all: glib.o printk.o cpu.o bitree.o kfifo.o
|
||||
@list='$(kernel_common_subdirs)'; for subdir in $$list; do \
|
||||
echo "make all in $$subdir";\
|
||||
cd $$subdir;\
|
||||
@ -21,4 +21,7 @@ cpu.o: cpu.c
|
||||
gcc $(CFLAGS) -c cpu.c -o cpu.o
|
||||
|
||||
bitree.o: bitree.c
|
||||
gcc $(CFLAGS) -c bitree.c -o bitree.o
|
||||
gcc $(CFLAGS) -c bitree.c -o bitree.o
|
||||
|
||||
kfifo.o: kfifo.c
|
||||
gcc $(CFLAGS) -c kfifo.c -o kfifo.o
|
||||
|
Reference in New Issue
Block a user