summaryrefslogtreecommitdiff
path: root/lib/libc/softfloat
diff options
context:
space:
mode:
authoruebayasi <uebayasi@NetBSD.org>2009-12-06 05:34:42 +0000
committeruebayasi <uebayasi@NetBSD.org>2009-12-06 05:34:42 +0000
commitf0d2ed931cae780769cd40b19cc02e4c52b22700 (patch)
treecb70ebada1f3159cdddfd19e732a4af10b3232f3 /lib/libc/softfloat
parent378ad8db5541b6dc81178746d03a2bec04793d91 (diff)
Assign quad / softfloat specific ${SRCS} to ${SRCS.quad} / ${SRCS.softfloat}
then append them to ${SRCS}. Those will be used to generate quad / softfloat symbol lists.
Diffstat (limited to 'lib/libc/softfloat')
-rw-r--r--lib/libc/softfloat/Makefile.inc10
1 files changed, 6 insertions, 4 deletions
diff --git a/lib/libc/softfloat/Makefile.inc b/lib/libc/softfloat/Makefile.inc
index 1e5809c4011..1f12bb5396d 100644
--- a/lib/libc/softfloat/Makefile.inc
+++ b/lib/libc/softfloat/Makefile.inc
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.inc,v 1.4 2004/09/26 21:13:27 jmmv Exp $
+# $NetBSD: Makefile.inc,v 1.5 2009/12/06 05:34:42 uebayasi Exp $
SOFTFLOAT_BITS?=64
.PATH: ${ARCHDIR}/softfloat \
@@ -7,11 +7,13 @@ SOFTFLOAT_BITS?=64
CPPFLAGS+= -I${ARCHDIR}/softfloat -I${.CURDIR}/softfloat
CPPFLAGS+= -DSOFTFLOAT_FOR_GCC
-SRCS+= softfloat.c
+SRCS.softfloat= softfloat.c
-SRCS+= fpgetround.c fpsetround.c fpgetmask.c fpsetmask.c \
+SRCS.softfloat+=fpsetround.c fpgetmask.c fpsetmask.c \
fpgetsticky.c fpsetsticky.c
-SRCS+= eqsf2.c nesf2.c gtsf2.c gesf2.c ltsf2.c lesf2.c negsf2.c \
+SRCS.softfloat+=nesf2.c gtsf2.c gesf2.c ltsf2.c lesf2.c negsf2.c \
eqdf2.c nedf2.c gtdf2.c gedf2.c ltdf2.c ledf2.c negdf2.c \
nexf2.c gtxf2.c gexf2.c negxf2.c unordsf2.c unorddf2.c
+
+SRCS+= ${SRCS.softfloat}