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