projects
/
pintos-anon
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
750d219
)
Add filesys dir.
author
Ben Pfaff
<blp@cs.stanford.edu>
Tue, 17 Aug 2004 03:06:24 +0000
(
03:06
+0000)
committer
Ben Pfaff
<blp@cs.stanford.edu>
Tue, 17 Aug 2004 03:06:24 +0000
(
03:06
+0000)
src/Makefile
patch
|
blob
|
history
diff --git
a/src/Makefile
b/src/Makefile
index 72b234a1312739b7d8dafaf735409f6fde5e3012..9242a7a1ce6757bb9dffc202389c3551c2da00a3 100644
(file)
--- a/
src/Makefile
+++ b/
src/Makefile
@@
-1,9
+1,11
@@
+SUBDIRS = threads filesys
+
all::
- @echo "Run 'make' in
the threads, userprog, filesys, or vm directory
."
+ @echo "Run 'make' in
subdirectories $(SUBDIRS)
."
@echo "This top-level make has only 'clean' targets."
clean::
- for d in
threads
; do $(MAKE) -C $$d $@; done
+ for d in
$(SUBDIRS)
; do $(MAKE) -C $$d $@; done
distclean::
$(MAKE) clean