Remove building with NOCRYPTO option
[minix.git] / lib / libc / arch / arm / string / Makefile.inc
blobac30558600048a210c841d1204a547537f589fc8
1 # $NetBSD: Makefile.inc,v 1.9 2013/08/21 03:05:35 matt Exp $
3 SRCS.string+=   memcmp.S memcpy.S memmove.S memset.S
4 SRCS.string+=   ffs.S
5 SRCS.string+=   bcopy.S bzero.S
6 SRCS.string+=   strcat.S
7 SRCS.string+=   strcpy.S strlcpy.S strncpy.S
8 .if empty(LIBC_MACHINE_ARCH:M*v7*)
9 SRCS.string+=   strcmp.S strncmp.S 
10 SRCS.string+=   strlen.S strnlen.S 
11 SRCS.string+=   strchr.S strrchr.S 
12 .endif
14 .for f in ${SRCS.string}
15 CPUFLAGS.${f}+=         -marm
16 .for s in o po pico ln d
17 ${f:.S=.${s}}:          ${ARCHDIR}/string/Makefile.inc
18 .endfor
19 .endfor
21 .if !empty(LIBC_MACHINE_ARCH:M*v7*)
22 SRCS.string+=   strcmp.S strncmp.S 
23 SRCS.string+=   strlen.S strnlen.S 
24 SRCS.string+=   strchr.S strrchr.S 
25 .endif
27 SRCS.string+=   strlcat.S
29 SRCS+=  ${SRCS.string}