blob: 725d1060760b6b81c32634ea0eed67ccc51df7da (
plain)
1
2
3
4
5
6
7
|
# $Id: //depot/Master/support/tests/Makefile#2 $ $Date: 2004/09/24 $ $Author: karl $
# Written 2004, Karl Berry. Public domain.
tests = *-*-*
check test clean distclean:
for t in $(tests); do (cd $$t && make $@) || exit 1; done
|