Files
lk/lib/libc/string/arch/arm/rules.mk
2012-08-31 15:52:24 -07:00

15 lines
278 B
Makefile

LOCAL_DIR := $(GET_LOCAL_DIR)
ifeq ($(SUBARCH),arm)
ASM_STRING_OPS := bcopy bzero memcpy memmove memset
MODULE_SRCS += \
$(LOCAL_DIR)/memcpy.S \
$(LOCAL_DIR)/memset.S
# filter out the C implementation
C_STRING_OPS := $(filter-out $(ASM_STRING_OPS),$(C_STRING_OPS))
endif