Add makefiles for cleaning grades, top level.
[pintos-anon] / Makefile
1 SUBDIRS = src grading doc
2
3 all::
4         @echo "This makefile has only 'clean' targets."
5
6 clean::
7         for d in $(SUBDIRS); do $(MAKE) -C $$d $@; done
8
9 distclean:: clean
10         find . -name '*~' -exec rm '{}' \;