From: Jeroen Ruigrok/asmodai Date: Wed, 29 Dec 2004 10:16:41 +0000 (+0000) Subject: Get rid of unused hardware targets. X-Git-Tag: v2.0.1~9368 X-Git-Url: https://gitweb.dragonflybsd.org/dragonfly.git/commitdiff_plain/9483ae25f0526ad2a4927038cc8ca5c81759f776 Get rid of unused hardware targets. --- diff --git a/lib/libm/Makefile b/lib/libm/Makefile index ae738c153e..9c71a65ad3 100644 --- a/lib/libm/Makefile +++ b/lib/libm/Makefile @@ -1,15 +1,11 @@ # From: @(#)Makefile 8.1 (Berkeley) 6/4/93 # $FreeBSD: src/lib/libm/Makefile,v 1.8.2.1 2001/04/25 10:04:32 ru Exp $ -# $DragonFly: src/lib/libm/Makefile,v 1.2 2003/06/17 04:26:49 dillon Exp $ +# $DragonFly: src/lib/libm/Makefile,v 1.3 2004/12/29 10:16:41 asmodai Exp $ # # ieee - for most IEEE machines, we hope. -# mc68881 - the, ahem, mc68881. # national - for those ieee machines whose floating point implementation # has similar byte ordering as the NATIONAL 32016 with 32081. # i386 - i387 NPX, currently the same as "national" -# mips - for MIPS achitecture machines -# tahoe - for the tahoe double format. -# vax - for the vax D_floating format LIB= m CFLAGS+=-I${.CURDIR}/common_source @@ -27,19 +23,6 @@ SRCS+= atan2.c sincos.c tan.c # ieee SRCS+= cabs.c cbrt.c support.c -.elif (${MACHINE_ARCH} == "hp300" || ${MACHINE_ARCH} == "luna68k") - -HARDWARE=mc68881 -.PATH: ${.CURDIR}/mc68881 ${.CURDIR}/common_source ${.CURDIR}/ieee -# common_source -SRCS+= acosh.c asinh.c erf.c exp.c exp__E.c fmod.c gamma.c lgamma.c \ - j0.c j1.c log.c log__L.c pow.c -# mc68881 -SRCS+= asincos.s atan.s atan2.c atanh.s cosh.s expm1.s floor.s \ - log10.s log1p.s sincos.s sinh.s sqrt.s support.s tan.s tanh.s -# ieee -SRCS+= cabs.c cbrt.c - .elif (${MACHINE_ARCH} == "i386") HARDWARE=i387 @@ -54,20 +37,6 @@ SRCS+= atan2.c sincos.c tan.c # ieee SRCS+= cabs.c cbrt.c support.c -.elif (${MACHINE_ARCH} == "mips") - -HARDWARE=${MACHINE_ARCH} -.PATH: ${.CURDIR}/common_source ${.CURDIR}/common ${.CURDIR}/ieee -CFLAGS+= -Dnational -# common_source -SRCS+= acosh.c asincos.c asinh.c atan.c atanh.c cosh.c erf.c exp.c \ - exp__E.c expm1.c floor.c fmod.c gamma.c lgamma.c j0.c j1.c \ - jn.c log.c log10.c log1p.c log__L.c pow.c sinh.c tanh.c -# common -SRCS+= atan2.c sincos.c tan.c -# ieee -SRCS+= cabs.c cbrt.c support.c - .elif (${MACHINE_ARCH} == "national") HARDWARE=${MACHINE_ARCH} @@ -88,12 +57,6 @@ SRCS+= sqrt.s support.s # ieee SRCS+= cabs.c cbrt.c -.elif (${MACHINE_ARCH} == "sparc") - -HARDWARE=${MACHINE_ARCH} -.PATH: ${.CURDIR}/common_source ${.CURDIR}/common ${.CURDIR}/ieee -# common_source -SRCS+= acosh.c asincos.c asinh.c atan.c atanh.c cosh.c erf.c exp.c \ exp__E.c expm1.c floor.c fmod.c gamma.c lgamma.c j0.c j1.c \ jn.c log.c log10.c log1p.c log__L.c pow.c sinh.c tanh.c # XXX should do sqrt & support functions in assembly @@ -102,31 +65,6 @@ SRCS+= atan2.c sincos.c tan.c # ieee SRCS+= cabs.c cbrt.c support.c -.elif (${MACHINE_ARCH} == "tahoe") - -HARDWARE=${MACHINE_ARCH} -.PATH: ${.CURDIR}/common_source ${.CURDIR}/common ${.CURDIR}/tahoe \ -# common_source -SRCS+= acosh.c asincos.c asinh.c atan.c atanh.c cosh.c erf.c exp.c \ - exp__E.c expm1.c floor.c fmod.c gamma.c lgamma.c j0.c j1.c jn.c \ - log.c log10.c log1p.c log__L.c pow.c sinh.c tanh.c -# common -SRCS+= atan2.c sincos.c tan.c -# tahoe -SRCS+= cabs.s cbrt.s sqrt.s support.s infnan.s - -.elif (${MACHINE_ARCH} == "vax") - -HARDWARE=${MACHINE_ARCH} -.PATH: ${.CURDIR}/common_source ${.CURDIR}/vax -# common_source -SRCS+= acosh.c asincos.c asinh.c atan.c atanh.c cosh.c erf.c exp.c \ - exp__E.c expm1.c floor.c fmod.c gamma.c lgamma.c j0.c j1.c jn.c \ - log.c log10.c log1p.c log__L.c pow.c sinh.c tanh.c -# vax -SRCS+= atan2.s cabs.s cbrt.s sqrt.s sincos.s tan.s argred.s support.s \ - infnan.s - .endif MAN+= common_source/acos.3 common_source/acosh.3 common_source/asin.3 \