add ipc pipe (#28)

This commit is contained in:
zzy666-hw
2022-08-20 21:47:41 +08:00
committed by GitHub
parent fd9d001d23
commit 554b73ec99
16 changed files with 283 additions and 5 deletions

10
kernel/ipc/Makefile Normal file
View File

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