Mon Dec 14 00:42:06 2009 UTC ()
Merge from matt-nb5-mips64
Teach lint about mips64


(matt)
diff -r1.10 -r1.11 src/usr.bin/xlint/Makefile.inc

cvs diff -r1.10 -r1.11 src/usr.bin/xlint/Makefile.inc (expand / switch to context diff)
--- src/usr.bin/xlint/Makefile.inc 2009/04/14 09:09:59 1.10
+++ src/usr.bin/xlint/Makefile.inc 2009/12/14 00:42:06 1.11
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile.inc,v 1.10 2009/04/14 09:09:59 lukem Exp $
+#	$NetBSD: Makefile.inc,v 1.11 2009/12/14 00:42:06 matt Exp $
 
 WARNS?=		3	# XXX: fails -Wsign-compare
 
@@ -11,6 +11,8 @@
 # on the m68000), so we special case the directory name here.
 .if ${MACHINE_ARCH} == "m68000"
 ARCHSUBDIR=	m68000
+.elif ${MACHINE_ARCH} == "mips64eb" || ${MACHINE_ARCH} == "mips64el"
+ARCHSUBDIR=	mips64
 .else
 ARCHSUBDIR=	${MACHINE_CPU}
 .endif