]> CyberLeo.Net >> Repos - FreeBSD/releng/8.1.git/blob - tools/regression/lib/msun/Makefile
Copy stable/8 to releng/8.1 in preparation for 8.1-RC1.
[FreeBSD/releng/8.1.git] / tools / regression / lib / msun / Makefile
1 # $FreeBSD$
2
3 TESTS=  test-conj test-csqrt test-exponential test-fenv test-fma \
4         test-fmaxmin test-ilogb test-invtrig test-lrint \
5         test-lround test-nan test-next test-rem test-trig
6 CFLAGS+= -O0 -lm
7
8 .PHONY: tests
9 tests: ${TESTS}
10         for p in ${TESTS}; do ${.OBJDIR}/$$p; done
11
12 .PHONY: clean
13 clean:
14         -rm -f ${TESTS}