This commit is contained in:
Anish Athalye
2018-10-24 20:44:45 -04:00
parent da1f8392b1
commit c67463e23c
71 changed files with 4734 additions and 18 deletions

View File

@@ -76,6 +76,24 @@ KERN_BINFILES += user/idle \
user/pingpong \
user/pingpongs \
user/primes
# Binary files for LAB5
KERN_BINFILES += user/faultio\
user/spawnfaultio\
user/testfile \
user/spawnhello \
user/icode \
fs/fs
# Binary files for LAB5
KERN_BINFILES += user/testpteshare \
user/testfdsharing \
user/testpipe \
user/testpiperace \
user/testpiperace2 \
user/primespipe \
user/testkbd \
user/testshell
KERN_OBJFILES := $(patsubst %.c, $(OBJDIR)/%.o, $(KERN_SRCFILES))
KERN_OBJFILES := $(patsubst %.S, $(OBJDIR)/%.o, $(KERN_OBJFILES))
KERN_OBJFILES := $(patsubst $(OBJDIR)/lib/%, $(OBJDIR)/kern/%, $(KERN_OBJFILES))