Module Name: src
Committed By: matt
Date: Mon Dec 14 00:42:06 UTC 2009
Modified Files:
src/usr.bin/xlint: Makefile.inc
Log Message:
Merge from matt-nb5-mips64
Teach lint about mips64
To generate a diff of this commit:
cvs rdiff -u -r1.10 -r1.11 src/usr.bin/xlint/Makefile.inc
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/usr.bin/xlint/Makefile.inc
diff -u src/usr.bin/xlint/Makefile.inc:1.10 src/usr.bin/xlint/Makefile.inc:1.11
--- src/usr.bin/xlint/Makefile.inc:1.10 Tue Apr 14 09:09:59 2009
+++ src/usr.bin/xlint/Makefile.inc Mon Dec 14 00:42:06 2009
@@ -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