X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2FMakefile.build;h=017267f688b14a356d5c8556ecae12956efd29c6;hb=993c1d9f4452e2edd851f3175dfdf317f18bdb9f;hp=e55ce566e8dfefc61c45824744c4102ef2f5ff75;hpb=b2a1e970fa78d8b4c31239ff2ac9ef2b4bab09a7;p=pintos-anon diff --git a/src/Makefile.build b/src/Makefile.build index e55ce56..017267f 100644 --- a/src/Makefile.build +++ b/src/Makefile.build @@ -25,6 +25,7 @@ threads_SRC += threads/paging.c # Page tables. threads_SRC += threads/palloc.c # Page allocator. threads_SRC += threads/malloc.c # Subpage allocator. threads_SRC += threads/start.S # Startup code. +threads_SRC += threads/test.c # Test code. # Device driver code. devices_SRC = devices/timer.c # Timer device. @@ -45,13 +46,13 @@ lib_SRC += lib/string.c # String functions. lib_kernel_SRC += lib/kernel/list.c # Doubly-linked lists. lib_kernel_SRC += lib/kernel/bitmap.c # Bitmaps. lib_kernel_SRC += lib/kernel/hash.c # Hash tables. -lib_kernel_SRC += lib/kernel/printf.c # Kernel printf(). +lib_kernel_SRC += lib/kernel/console.c # printf(), putchar(). # Filesystem code. filesys_SRC = filesys/filesys.c # Filesystem core. filesys_SRC += filesys/file.c # Files. filesys_SRC += filesys/directory.c # Directories. -filesys_SRC += filesys/filehdr.c # File headers (inodes). +filesys_SRC += filesys/inode.c # File headers. filesys_SRC += filesys/fsutil.c # Utilities. # User process code.