opnsense-src/tools/regression/lib/msun/Makefile

15 lines
312 B
Makefile
Raw Normal View History

2004-06-10 23:22:34 -04:00
# $FreeBSD$
TESTS= test-conj test-csqrt test-exponential test-fenv test-fma \
test-fmaxmin test-ilogb test-invtrig test-lrint \
test-lround test-nan test-next test-rem test-trig
2004-06-10 23:22:34 -04:00
CFLAGS+= -O0 -lm
.PHONY: tests
tests: ${TESTS}
for p in ${TESTS}; do ${.OBJDIR}/$$p; done
.PHONY: clean
clean:
-rm -f ${TESTS}