diff options
author | Andreas Kling <awesomekling@gmail.com> | 2018-10-30 13:59:29 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2018-10-30 13:59:29 +0100 |
commit | 68739dc43e6bc42f9cac79fe5cbec714ddeeb218 (patch) | |
tree | 705579b6a757d6219d28e6a8c2a4244eb828bcaa /Kernel/Makefile | |
parent | bd2b5327d042f5bf04ae7089d8b36c113313f8f3 (diff) | |
download | serenity-68739dc43e6bc42f9cac79fe5cbec714ddeeb218.zip |
Start working on virtual consoles/TTYs.
This is a mess right now, but I'd rather commit as I go.
Diffstat (limited to 'Kernel/Makefile')
-rw-r--r-- | Kernel/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Kernel/Makefile b/Kernel/Makefile index b391a3f2a9..25574ecd16 100644 --- a/Kernel/Makefile +++ b/Kernel/Makefile @@ -19,7 +19,9 @@ KERNEL_OBJS = \ IRQHandler.o \ kprintf.o \ ProcFileSystem.o \ - RTC.o + RTC.o \ + TTY.o \ + VirtualConsole.o VFS_OBJS = \ ../VirtualFileSystem/DiskDevice.o \ @@ -53,7 +55,7 @@ KERNEL = kernel BOOTLOADER = Boot/boot.bin IMAGE = .floppy-image ARCH_FLAGS = -STANDARD_FLAGS = -std=c++17 -nostdinc++ -nostdlib +STANDARD_FLAGS = -std=c++17 -nostdinc++ -nostdlib #-nostdinc KERNEL_FLAGS = -ffreestanding -fno-stack-protector -fno-ident WARNING_FLAGS = -Wextra -Wall -Wundef -Wcast-qual -Wwrite-strings FLAVOR_FLAGS = -mregparm=3 -march=i386 -m32 -fno-exceptions -fno-rtti -fmerge-all-constants -fno-unroll-loops -fno-pie -fno-pic |