9fe44df287
- Remove .c files which duplicate entries in MISRCS. - Use the same, less merge conflict prone style in all cases. - Use MDSRCS for mips (.c and .S files both ended up in SRCS). - Remove pointless sparc64 Makefile.inc. - Remove uninformative foreign VCS ID entries. Reviewed by: emaste, imp, jhb MFC after: 1 week Sponsored by: DARPA, AFRL Differential Revision: https://reviews.freebsd.org/D9841
21 lines
318 B
Makefile
21 lines
318 B
Makefile
# $FreeBSD$
|
|
#
|
|
# String handling from the Cortex Strings library
|
|
# https://git.linaro.org/toolchain/cortex-strings.git
|
|
#
|
|
|
|
.PATH: ${SRCTOP}/contrib/cortex-strings/src/aarch64
|
|
|
|
MDSRCS+= \
|
|
memchr.S \
|
|
memcmp.S \
|
|
memcpy.S \
|
|
memmove.S \
|
|
memset.S \
|
|
strchr.S \
|
|
strcmp.S \
|
|
strcpy.S \
|
|
strlen.S \
|
|
strncmp.S \
|
|
strnlen.S
|