diff options
author | Alex AUVOLAT <alexis211@gmail.com> | 2012-05-17 17:56:23 +0200 |
---|---|---|
committer | Alex AUVOLAT <alexis211@gmail.com> | 2012-05-17 17:56:23 +0200 |
commit | 593bf4df3d8db49286c1a7ae4ef75c887b629930 (patch) | |
tree | 988a104c9611d72e1252282789688586efd9a394 /src/kernel/Makefile | |
parent | 7c9a48b4e6d66cf4f62e7bad9e22ab06923e47ef (diff) | |
download | TCE-593bf4df3d8db49286c1a7ae4ef75c887b629930.tar.gz TCE-593bf4df3d8db49286c1a7ae4ef75c887b629930.zip |
Devices using the VFS structure. Basic keyboard handler.
Diffstat (limited to 'src/kernel/Makefile')
-rw-r--r-- | src/kernel/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/kernel/Makefile b/src/kernel/Makefile index 0537388..bfa5908 100644 --- a/src/kernel/Makefile +++ b/src/kernel/Makefile @@ -1,11 +1,12 @@ Out = kernel.elf Obj = core/loader_.o core/kmain.o core/sys.o \ - core/monitor.o task/timer.o \ - task/idt.o task/idt_.o task/task.o task/task_.o task/syscall.o task/sched.o \ + task/timer.o task/idt.o task/idt_.o task/task.o task/task_.o task/syscall.o task/sched.o \ lib/bitset.o lib/std.o lib/cpp.o \ mem/mem.o mem/paging.o mem/gdt.o mem/_dlmalloc.o mem/seg.o \ linker/elf.o \ - vfs/node.o vfs/vdir.o + vfs/node.o vfs/vdir.o \ + dev/vgatxt.o dev/keyboard.o dev/ps2keyboard.o \ + ui/vt.o ExtObj = $(SrcPath)/common/_common.o |