diff options
| author | matt <matt@NetBSD.org> | 2014-09-01 07:32:35 +0000 |
|---|---|---|
| committer | matt <matt@NetBSD.org> | 2014-09-01 07:32:35 +0000 |
| commit | ae843c0757b413c88faaa8be9ef2eb6fbd2bfa26 (patch) | |
| tree | 7e4c0023959c163515c720d6095047dca8381eba /sys/lib/libkern | |
| parent | d92cacd8514bf8dd7ff9bd88810c99394b674d44 (diff) | |
Make random.S invisible for coldfire too (e.g. anything not "m68k")
Diffstat (limited to 'sys/lib/libkern')
| -rw-r--r-- | sys/lib/libkern/arch/m68k/Makefile.inc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/lib/libkern/arch/m68k/Makefile.inc b/sys/lib/libkern/arch/m68k/Makefile.inc index 2c79f486bae..0311c1cccac 100644 --- a/sys/lib/libkern/arch/m68k/Makefile.inc +++ b/sys/lib/libkern/arch/m68k/Makefile.inc @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.inc,v 1.33 2014/08/27 08:51:37 christos Exp $ +# $NetBSD: Makefile.inc,v 1.34 2014/09/01 07:32:35 matt Exp $ SRCS+= bswap16.S bswap32.S bswap64.S SRCS+= memcmp.S memcpy.S memmove.S memset.S @@ -10,5 +10,7 @@ SRCS+= ffs.S .if defined(MACHINE_ARCH) && (${MACHINE_ARCH} == "m68000") SRCS+= mulsi3.S divsi3.S udivsi3.S modsi3.S umodsi3.S +.endif +.if defined(MACHINE_ARCH) && (${MACHINE_ARCH} != "m68k") random.S: .INVISIBLE .endif |
