1131099Ssobomax# $FreeBSD$
2131099Ssobomax
3131099SsobomaxTESTS=	test-qsort	\
4131099Ssobomax	test-heapsort	\
5131099Ssobomax	test-mergesort
6131099Ssobomax
7131099Ssobomax.PHONY: tests
8131099Ssobomaxtests: ${TESTS}
9131099Ssobomax	for p in ${TESTS}; do ${.OBJDIR}/$$p; done
10131099Ssobomax
11131099Ssobomax.PHONY: clean
12131099Ssobomaxclean:
13131099Ssobomax	-rm -f ${TESTS}
14