summaryrefslogtreecommitdiffstats
path: root/Makefile.build
diff options
context:
space:
mode:
authormanuel <manuel@mausz.at>2012-06-21 16:47:23 +0200
committermanuel <manuel@mausz.at>2012-06-21 16:47:23 +0200
commite11b2ef0c606ab516a4344aeea1dbba22cb1fe5d (patch)
treeb4973f4dca916113c82a4a172f6f729d41cf4430 /Makefile.build
parente9e69def589375c3d0e51b532268b27d3d403bbf (diff)
downloadprogos-e11b2ef0c606ab516a4344aeea1dbba22cb1fe5d.tar.gz
progos-e11b2ef0c606ab516a4344aeea1dbba22cb1fe5d.tar.bz2
progos-e11b2ef0c606ab516a4344aeea1dbba22cb1fe5d.zip
initial implementation of memory mapped files
Diffstat (limited to 'Makefile.build')
-rw-r--r--Makefile.build3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.build b/Makefile.build
index e68e721..4854124 100644
--- a/Makefile.build
+++ b/Makefile.build
@@ -62,7 +62,8 @@ userprog_SRC += userprog/gdt.c # GDT initialization.
62userprog_SRC += userprog/tss.c # TSS management. 62userprog_SRC += userprog/tss.c # TSS management.
63 63
64# No virtual memory code yet. 64# No virtual memory code yet.
65vm_SRC = vm/page.c 65vm_SRC = vm/page.c
66vm_SRC += vm/mmap.c
66 67
67# Filesystem code. 68# Filesystem code.
68filesys_SRC = filesys/filesys.c # Filesystem core. 69filesys_SRC = filesys/filesys.c # Filesystem core.