From: Ben Pfaff Date: Tue, 17 Aug 2004 03:06:24 +0000 (+0000) Subject: Add filesys dir. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=361c7416e6dad0124adef553993c72511d248933;p=pintos-anon Add filesys dir. --- diff --git a/src/Makefile b/src/Makefile index 72b234a..9242a7a 100644 --- 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