projects
/
pintos-anon
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Fix bogus return value from `pintos' utility when calling Bochs
[pintos-anon]
/
grading
/
Makefile
1
SUBDIRS = userprog vm filesys
2
3
all::
4
@echo "Run 'make' in subdirectories $(SUBDIRS)."
5
@echo "This makefile has only 'clean' targets."
6
7
clean::
8
for d in $(SUBDIRS); do $(MAKE) -C $$d $@; done
9
10
distclean:: clean
11
find . -name '*~' -exec rm '{}' \;