1# 2# Read COPYING for licensing details. 3# 4# Ngie Cooper, June 2010 5# 6 7all 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 12distclean-makefiles: 13 @find */ -name 'Makefile*' | grep -v threads/Makefile | xargs rm -f 14