From e77b371fb0fc4e62fa727a340b2e322fa60ebcff Mon Sep 17 00:00:00 2001 From: James Barnett Date: Sun, 6 Oct 2019 15:53:52 +0100 Subject: Add command parsing and echo command --- Makefile | 1 + 1 file changed, 1 insertion(+) (limited to 'Makefile') diff --git a/Makefile b/Makefile index a5d0449..a0ae7a6 100644 --- a/Makefile +++ b/Makefile @@ -16,6 +16,7 @@ build: setup kernel/kernel.c kernel/global_descriptor_table.c kernel/gpu/text_mo $(CC) $(CFLAGS) -c os/main.c -o bin/main.o $(CC) $(CFLAGS) -c os/shell/shell.c -o bin/shell.o $(CC) $(CFLAGS) -c os/stdlib/stdlib.c -o bin/stdlib.o + $(CC) $(CFLAGS) -c os/commands/echo.c -o bin/echo.o ld -m elf_i386 -T link.ld -o bin/kernel.bin bin/*.o clean: -- cgit v1.2.3