xref: /dragonfly/tools/regression/lib/libm/Makefile (revision 7f8c68295613ce24cc71827cf210cb3d1e3bc69b)
1# $FreeBSD: src/tools/regression/lib/msun/Makefile,v 1.21 2013/05/31 00:27:55 svnexp Exp $
2
3TESTS=    test-cexp test-conj test-csqrt test-ctrig \
4          test-exponential test-fenv test-fma \
5          test-fmaxmin test-ilogb test-invtrig test-invctrig \
6          test-logarithm test-lrint \
7          test-lround test-nan test-nearbyint test-next test-rem test-trig
8CFLAGS+= -O0 -lm
9
10.PHONY: tests
11tests: ${TESTS}
12          for p in ${TESTS}; do ${.OBJDIR}/$$p; done
13
14.PHONY: clean
15clean:
16          -rm -f ${TESTS}
17