]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - tools/regression/lib/msun/Makefile
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.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}