mirror of
https://github.com/opnsense/src.git
synced 2026-02-21 17:00:58 -05:00
these tests some day, but in the mean time, they're a useful sanity check for future changes.)
14 lines
352 B
Makefile
14 lines
352 B
Makefile
# $FreeBSD$
|
|
|
|
TESTS= test-cexp test-conj test-csqrt test-exponential test-fenv test-fma \
|
|
test-fmaxmin test-ilogb test-invtrig test-logarithm test-lrint \
|
|
test-lround test-nan test-nearbyint test-next test-rem test-trig
|
|
CFLAGS+= -O0 -lm
|
|
|
|
.PHONY: tests
|
|
tests: ${TESTS}
|
|
for p in ${TESTS}; do ${.OBJDIR}/$$p; done
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
-rm -f ${TESTS}
|