summaryrefslogtreecommitdiff
path: root/sys/lib
diff options
context:
space:
mode:
authorcgd <cgd@NetBSD.org>1995-02-13 21:48:17 +0000
committercgd <cgd@NetBSD.org>1995-02-13 21:48:17 +0000
commit537b309ca78e2c322af40a96bdcd644630dcb81f (patch)
treea70d1db38e5fe943b5ff0e0dff2d25c14c49359d /sys/lib
parent41f1c5fa0da556229eebebdb7b6943ee1c0896b8 (diff)
slight cleanup/reorg. don't use quad code on the alpha.
Diffstat (limited to 'sys/lib')
-rw-r--r--sys/lib/libkern/Makefile11
1 files changed, 6 insertions, 5 deletions
diff --git a/sys/lib/libkern/Makefile b/sys/lib/libkern/Makefile
index 9ea7b8e8fee..5bc626944b7 100644
--- a/sys/lib/libkern/Makefile
+++ b/sys/lib/libkern/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.18 1994/12/31 04:32:23 mycroft Exp $
+# $NetBSD: Makefile,v 1.19 1995/02/13 21:48:17 cgd Exp $
LIB= kern
NOPIC=
@@ -27,22 +27,23 @@ LIBC= ${.CURDIR}/../../../lib/libc
AINC+= -I${LIBC}/arch/${MACHINE_ARCH}
CFLAGS+= -I${.CURDIR}/arch/${MACHINE_ARCH}
+.if (${MACHINE_ARCH} != "alpha")
# Quad support
SRCS+= adddi3.c anddi3.c ashldi3.c ashrdi3.c cmpdi2.c divdi3.c iordi3.c \
lshldi3.c lshrdi3.c moddi3.c muldi3.c negdi2.c notdi2.c qdivrem.c \
subdi3.c ucmpdi2.c udivdi3.c umoddi3.c xordi3.c
+.PATH: ${LIBC}/arch/${MACHINE_ARCH}/quad ${LIBC}/quad
+.endif
# Other stuff
SRCS+= mcount.c
-.PATH: ${LIBC}/arch/${MACHINE_ARCH}/quad ${LIBC}/quad
-
-install:
-
# mcount cannot be compiled with profiling
mcount.po: mcount.o
cp mcount.o mcount.po
CLEANFILES+= machine ${MACHINE_ARCH}
+install:
+
.include <bsd.lib.mk>