xref: /freebsd/tools/regression/usr.bin/cc/Makefile (revision ac77b2621508c6a50ab01d07fe8d43795d908f05)
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