Home | History | Annotate | Line # | Download | only in powerpc
Makefile.inc revision 1.31.70.1
      1  1.31.70.1  thorpej #	$NetBSD: Makefile.inc,v 1.31.70.1 2021/08/01 22:42:39 thorpej Exp $
      2        1.1       ws 
      3       1.28      dsl SRCS+=	bswap16.c bswap32.c
      4       1.27      dsl SRCS+=	htonl.c htons.c ntohl.c ntohs.c
      5       1.27      dsl SRCS+=	syncicache.c
      6       1.17      mjl 
      7       1.23     matt SRCS+=	ffs.S memset.S strlen.S
      8       1.31     matt SRCS+=	gprsavrest.S
      9       1.25  garbled 
     10  1.31.70.1  thorpej # XXX
     11  1.31.70.1  thorpej # Disable asm versions that use unaligned memory access and thus break 403.
     12       1.25  garbled .if ${MACHINE} == "evbppc"
     13  1.31.70.1  thorpej .  for name in memcmp memcpy memmove
     14  1.31.70.1  thorpej .    for suffix in o po pico go d
     15  1.31.70.1  thorpej ${name}.${suffix}: ${name}.c
     16  1.31.70.1  thorpej .    endfor
     17  1.31.70.1  thorpej .  endfor
     18       1.25  garbled .endif
     19