1LOCAL_DIR := $(GET_LOCAL_DIR) 2 3ASM_STRING_OPS := #bcopy bzero memcpy memmove memset 4 5MODULE_SRCS += \ 6 #$(LOCAL_DIR)/memcpy.S \ 7 #$(LOCAL_DIR)/memset.S 8 9# filter out the C implementation 10C_STRING_OPS := $(filter-out $(ASM_STRING_OPS),$(C_STRING_OPS)) 11 12