1TESTS= float 2CFLAGS+=-lm 3 4.PHONY: tests 5tests: ${TESTS} 6 for p in ${TESTS}; do ${.OBJDIR}/$$p; done 7 8.PHONY: clean 9clean: 10 -rm -f ${TESTS} 11