blob: 6af7a1e28346068512275ba7525e538722828587 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# $NetBSD: Makefile.inc,v 1.34 2022/05/30 14:18:10 rin Exp $
SRCS+= bswap16.c bswap32.c
SRCS+= htonl.c htons.c ntohl.c ntohs.c
SRCS+= syncicache.c
SRCS+= ffs.S memset.S strlen.S
SRCS+= gprsavrest.S
.if !empty(LIBKERN_MD_FLAGS:M*strict-align*)
# Disable asm versions that use unaligned memory access and thus break 403.
. for name in memcmp memcpy memmove
. for suffix in o po pico go d
${name}.${suffix}: ${name}.c
. endfor
. endfor
.endif
|