From 68a8fb4e3b3e9087904b17ce6d81983950b9dca9 Mon Sep 17 00:00:00 2001 From: Alexis211 Date: Mon, 31 Aug 2009 00:25:21 +0200 Subject: We now have complete support for keybord, IN UTF-8 !! --- Source/Kernel/Makefile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'Source/Kernel/Makefile') diff --git a/Source/Kernel/Makefile b/Source/Kernel/Makefile index 0758393..21fd6c9 100644 --- a/Source/Kernel/Makefile +++ b/Source/Kernel/Makefile @@ -10,8 +10,8 @@ ASM = nasm ASMFLAGS = -f elf OutFile = Melon.ke -Objects = Core/kmain.wtf.o \ - Core/loader.wtf.o \ +Objects = Core/loader.wtf.o \ + Core/kmain.wtf.o \ Core/cppsupport.wtf.o \ Core/Sys.ns.o \ Core/CMem.ns.o \ @@ -24,11 +24,14 @@ Objects = Core/kmain.wtf.o \ DeviceManager/Disp.ns.o \ DeviceManager/Dev.ns.o \ DeviceManager/Time.ns.o \ + DeviceManager/Kbd.ns.o \ TaskManager/Process.class.o \ TaskManager/Thread.class.o \ TaskManager/Task.ns.o \ TaskManager/Task.wtf.o \ + TaskManager/Mutex.class.o \ VTManager/VirtualTerminal.class.o \ + VTManager/VirtualTerminal-kbd.class.o \ VTManager/VT.ns.o \ Library/Bitset.class.o \ Library/String.class.o \ @@ -36,6 +39,7 @@ Objects = Core/kmain.wtf.o \ SyscallManager/IDT.ns.o \ SyscallManager/IDT.wtf.o \ Devices/Display/VGATextOutput.class.o \ + Devices/Keyboard/PS2Keyboard.class.o \ Devices/Timer.class.o all: $(OutFile) -- cgit v1.2.3