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

View File

@ -1,4 +1,4 @@
all: shell.o cmd.o cmd_help.o
all: shell.o cmd.o cmd_help.o cmd_test.o
ld -b elf64-x86-64 -z muldefs -o $(tmp_output_dir)/shell $(shell find . -name "*.o") $(shell find $(sys_libs_dir) -name "*.o") -T shell.lds
@ -9,5 +9,8 @@ shell.o: shell.c
cmd.o: cmd.c
gcc $(CFLAGS) -c cmd.c -o cmd.o
cmd_test.o: cmd_test.c
gcc $(CFLAGS) -c cmd_test.c -o cmd_test.o
cmd_help.o: cmd_help.c
gcc $(CFLAGS) -c cmd_help.c -o cmd_help.o