diff options
author | Alexis211 <alexis211@gmail.com> | 2009-08-31 00:25:21 +0200 |
---|---|---|
committer | Alexis211 <alexis211@gmail.com> | 2009-08-31 00:25:21 +0200 |
commit | 68a8fb4e3b3e9087904b17ce6d81983950b9dca9 (patch) | |
tree | 57518642ab813fddfb3887a47f7a01d839d9bb70 /Source/Kernel/Makefile | |
parent | 9ad8e2fe0242da26dae7fca2b180640637c8c062 (diff) | |
download | Melon-68a8fb4e3b3e9087904b17ce6d81983950b9dca9.tar.gz Melon-68a8fb4e3b3e9087904b17ce6d81983950b9dca9.zip |
We now have complete support for keybord, IN UTF-8 !!
Diffstat (limited to 'Source/Kernel/Makefile')
-rw-r--r-- | Source/Kernel/Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
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) |