| 123456789101112131415161718192021 | # uClibc math tests# Licensed under the GNU Library General Public License, see COPYING.LIBTESTS := basic-test rint tst-definitions test-fpucw# test-double test-idouble# test-float test-ifloat# test-ldouble test-ildoubleinclude ../Test.makDODIFF_rint     := 1EXTRA_CFLAGS    := -DNO_LONG_DOUBLE -fno-builtinEXTRA_LDFLAGS   := -lmPERL := /usr/bin/perlulps-file := $(firstword $(wildcard $(config-sysdirs:%=$(..)%/libm-test-ulps)))libm-test.c: $(ulps-file) libm-test.inc gen-libm-test.pl	$(Q)$(PERL) ./gen-libm-test.pl -u $< ./libm-test.inc -o "." 2>&1 > /dev/nullEXTRA_CLEAN := libm-test.c$(TARGETS): libm-test.c
 |