aboutsummaryrefslogtreecommitdiff
path: root/tools/regression/usr.bin/cc/Makefile
blob: 1f8b5d8f03fd39148e847f4be58b69c7510e9bc7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
TESTS=	float
CFLAGS+=-lm

.PHONY: tests
tests: ${TESTS}
	for p in ${TESTS}; do ${.OBJDIR}/$$p; done

.PHONY: clean
clean:
	-rm -f ${TESTS}