You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
274 B
14 lines
274 B
7 months ago
|
#
|
||
|
# 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
|
||
|
|
||
|
distclean-makefiles:
|
||
|
@find */ -name 'Makefile*' | xargs rm -f
|