| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 | # Makefile for uClibc## Copyright (C) 2000,2001 Erik Andersen <andersen@uclibc.org>## This program is free software; you can redistribute it and/or modify it under# the terms of the GNU Library General Public License as published by the Free# Software Foundation; either version 2 of the License, or (at your option) any# later version.## This program is distributed in the hope that it will be useful, but WITHOUT# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS# FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more# details.## You should have received a copy of the GNU Library General Public License# along with this program; if not, write to the Free Software Foundation, Inc.,# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USATESTDIR=../include $(TESTDIR)/Rules.makCFLAGS+=-D_GNU_SOURCE -DNO_LONG_DOUBLEEXTRA_LIBS=-lmPERL=/usr/bin/perlTARGETS:=libm-tests:=libm-tests+= test-double test-idouble#libm-tests+= test-float test-ifloat#libm-tests+= test-ldouble test-ildoublelibm-tests.o = $(addsuffix .o,$(libm-tests))libm-tests-generated = libm-test-ulps.h libm-test.cgenerated += $(libm-tests-generated) libm-test.stmpTARGETS += $(libm-tests) #$(libm-tests-generated)all: libm-test.c $(TARGETS)	test-double: test-double.o	$(CC) $(LDFLAGS) $@.o -o $@ $(EXTRA_LIBS)	-./$@test-idouble: test-idouble.o	$(CC) $(LDFLAGS) $@.o -o $@ $(EXTRA_LIBS)	-./$@test-float: test-float.o	$(CC) $(LDFLAGS) $@.o -o $@ $(EXTRA_LIBS)	-./$@test-ifloat: test-ifloat.o	$(CC) $(LDFLAGS) $@.o -o $@ $(EXTRA_LIBS)	-./$@test-ldouble: test-ldouble.o	$(CC) $(LDFLAGS) $@.o -o $@ $(EXTRA_LIBS)	-./$@test-ildouble: test-ildoubl.o	$(CC) $(LDFLAGS) $@.o -o $@ $(EXTRA_LIBS)	-./$@test-float.o: libm-test.ctest-ifloat.o: libm-test.c test-double.o: libm-test.ctest-idouble.o: libm-test.ctest-ldouble.o: libm-test.ctest-ildoubl.o: libm-test.culps-file = $(firstword $(wildcard $(config-sysdirs:%=$(..)%/libm-test-ulps)))libm-test.c: $(ulps-file) libm-test.inc gen-libm-test.pl	$(PERL) ./gen-libm-test.pl -u $< ./libm-test.inc -o "." 2>&1 > /dev/nullclean:	rm -f *.[oa] *~ core $(TARGETS) $(generated)
 |