X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?p=pintos-anon;a=blobdiff_plain;f=Makefile;h=2c374e72bf33b40f32c6476d6b5013a6258910db;hp=d1eab013e20772790f13a8fbd53e001e07c7a4fe;hb=94d17ee9287aec1c4c9ee37ca02615e8293a5f3a;hpb=94e2e63b24a901da641f5c68cf46ce00681f5dd1 diff --git a/Makefile b/Makefile index d1eab01..2c374e7 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,10 @@ -SUBDIRS = src grading doc tests +CLEAN_SUBDIRS = src doc tests all:: - @echo "This makefile has only 'clean' targets." + @echo "This makefile has only 'clean' and 'check' targets." clean:: - for d in $(SUBDIRS); do $(MAKE) -C $$d $@; done + for d in $(CLEAN_SUBDIRS); do $(MAKE) -C $$d $@; done distclean:: clean find . -name '*~' -exec rm '{}' \;