Implement a proper block layer with partition support.
[pintos-anon] / src / filesys / Make.vars
index 5899e51100fe5324fb924199c215f3e3a14f4e9c..b3aa0059bd15f7245ae14abf9eb4cc56bc931c87 100644 (file)
@@ -1,6 +1,13 @@
-DEFINES = -DUSERPROG -DFILESYS
-SUBDIRS = threads devices lib lib/kernel userprog filesys
+# -*- makefile -*-
 
-# Comment out the two lines below to disable VM.
-DEFINES += -DVM
-SUBDIRS += vm
+kernel.bin: DEFINES = -DUSERPROG -DFILESYS
+KERNEL_SUBDIRS = threads devices lib lib/kernel userprog filesys
+TEST_SUBDIRS = tests/userprog tests/filesys/base tests/filesys/extended
+GRADING_FILE = $(SRCDIR)/tests/filesys/Grading.no-vm
+SIMULATOR = --qemu
+
+# Uncomment the lines below to enable VM.
+#kernel.bin: DEFINES += -DVM
+#KERNEL_SUBDIRS += vm
+#TEST_SUBDIRS += tests/vm
+#GRADING_FILE = $(SRCDIR)/tests/filesys/Grading.with-vm