Get rid of unnecessary barrier. Improve comment.
[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 '{}' \;