
This brings our tree to NetBSD 7.0, as found on -current on the 10-10-2015. This updates: - LLVM to 3.6.1 - GCC to GCC 5.1 - Replace minix/commands/zdump with usr.bin/zdump - external/bsd/libelf has moved to /external/bsd/elftoolchain/ - Import ctwm - Drop sprintf from libminc Change-Id: I149836ac18e9326be9353958bab9b266efb056f0
25 lines
600 B
Makefile
25 lines
600 B
Makefile
# $NetBSD: Makefile.inc,v 1.1 2014/09/03 19:34:26 matt Exp $
|
|
|
|
SRCS+= bzero.S clz.S ctz.S ffs.S strlen.S memset.S
|
|
|
|
memcpy.o: memcpy.c
|
|
memcpy.po: memcpy.c
|
|
memcpy.pico: memcpy.c
|
|
|
|
# disable the asm versions of these because they break the explora.
|
|
# the special rules here are to override the suffix rules which seem
|
|
# to prefer .S files over .c
|
|
.if ${MACHINE} == "evbppc"
|
|
bcopy.o: bcopy.c
|
|
bcopy.po: bcopy.c
|
|
bcopy.pico: bcopy.c
|
|
memcmp.o: memcmp.c
|
|
memcmp.po: memcmp.c
|
|
memcmp.pico: memcmp.c
|
|
memmove.o: memmove.c
|
|
memmove.po: memmove.c
|
|
memmove.pico: memmove.c
|
|
.else
|
|
SRCS+= memcmp.S bcopy.S memmove.S
|
|
.endif
|