X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=src%2FMakefile;h=9242a7a1ce6757bb9dffc202389c3551c2da00a3;hb=91d3ace5e59a1d435f9cbae9e9cef55dad55a27f;hp=72b234a1312739b7d8dafaf735409f6fde5e3012;hpb=750d21936d284127e265d050ccbce76fca1ece1a;p=pintos-anon 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