Home | History | Annotate | Line # | Download | only in powerpc
Makefile.inc revision 1.33
      1  1.33      rin #	$NetBSD: Makefile.inc,v 1.33 2021/07/26 12:49:13 rin 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.33      rin # XXX
     11  1.33      rin # Disable asm versions that use unaligned memory access and thus break 403.
     12  1.25  garbled .if ${MACHINE} == "evbppc"
     13  1.32      rin .  for name in memcmp memcpy memmove
     14  1.33      rin .    for suffix in o po pico go d
     15  1.32      rin ${name}.${suffix}: ${name}.c
     16  1.32      rin .    endfor
     17  1.32      rin .  endfor
     18  1.25  garbled .endif
     19