13 lines
448 B
Makefile
Executable file
13 lines
448 B
Makefile
Executable file
# -*- makefile -*-
|
|
|
|
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
|