1 # 2 # Read COPYING for licensing details. 3 # 4 # Garrett Cooper, June 2010 5 # 6 7 all clean install test: 8 @for dir in `ls -d */Makefile 2>/dev/null | sed -e 's,/Makefile$$,,g'`; do \ 9 $(MAKE) -C $$dir $@; \ 10 done 11 12 distclean-makefiles: 13 @find */ -name 'Makefile*' | xargs rm -f 14