blob: 2221a23319e9dad4787730f2a1681068da5cb954 [file] [log] [blame]
.PHONY: clean all
#----------------------------------------------------------------------
# Make all of the test programs
#----------------------------------------------------------------------
all:
find . -type d -depth 1 | xargs -J % find % \
-name Makefile \
-exec echo \; \
-exec echo make -f '{}' \; \
-execdir make \;
#----------------------------------------------------------------------
# Make all of the test programs
#----------------------------------------------------------------------
clean:
find . -type d -depth 1 | xargs -J % find % \
-name Makefile \
-exec echo \; \
-exec echo make -f '{}' clean \; \
-execdir make clean \;