]> CyberLeo.Net >> Repos - FreeBSD/stable/9.git/blob - tools/regression/lib/msun/Makefile
Copy head to stable/9 as part of 9.0-RELEASE release cycle.
[FreeBSD/stable/9.git] / tools / regression / lib / msun / Makefile
1 # $FreeBSD$
2
3 TESTS=  test-cexp test-conj test-csqrt test-exponential test-fenv test-fma \
4         test-fmaxmin test-ilogb test-invtrig test-logarithm test-lrint \
5         test-lround test-nan test-nearbyint 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}