From bd77381c27ef5b61bf1c123efef3895b98a7a615 Mon Sep 17 00:00:00 2001 From: James Barnett Date: Sun, 26 May 2019 19:28:27 +0100 Subject: Proxy keypress from kernel to focused program --- Makefile | 2 ++ 1 file changed, 2 insertions(+) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 25e1afd..d2c3019 100644 --- a/Makefile +++ b/Makefile @@ -13,6 +13,8 @@ build: setup kernel/kernel.c kernel/global_descriptor_table.c kernel/gpu/text_mo $(CC) $(CFLAGS) -c kernel/global_descriptor_table.c -o bin/global_descriptor_table.o $(CC) $(CFLAGS) -c kernel/gpu/text_mode/display.c -o bin/text_mode_display.o $(CC) $(CFLAGS) -c kernel/io/keyboard/keyboard_handler.c -o bin/keyboard_handler.o + $(CC) $(CFLAGS) -c os/main.c -o bin/main.o + $(CC) $(CFLAGS) -c os/shell/shell.c -o bin/shell.o ld -m elf_i386 -T link.ld -o bin/kernel.bin bin/*.o clean: -- cgit v1.2.3