11 lines
211 B
Makefile
11 lines
211 B
Makefile
|
#
|
||
|
# Read COPYING for licensing details.
|
||
|
#
|
||
|
# Ngie Cooper, June 2010
|
||
|
#
|
||
|
|
||
|
all clean install test:
|
||
|
@for dir in `ls -d */Makefile 2>/dev/null | sed -e 's,/Makefile$$,,g'`; do \
|
||
|
$(MAKE) -C $$dir $@; \
|
||
|
done
|