1# 2# Copyright (C) 2016 The Android Open Source Project 3# 4# Licensed under the Apache License, Version 2.0 (the "License"); 5# you may not use this file except in compliance with the License. 6# You may obtain a copy of the License at 7# 8# http://www.apache.org/licenses/LICENSE-2.0 9# 10# Unless required by applicable law or agreed to in writing, software 11# distributed under the License is distributed on an "AS IS" BASIS, 12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13# See the License for the specific language governing permissions and 14# limitations under the License. 15# 16 17LOCAL_PATH := $(call my-dir) 18 19include $(CLEAR_NANO_VARS) 20 21src_files := \ 22 memcmp.c \ 23 memmove.c \ 24 memset.c \ 25 strcasecmp.c \ 26 strlen.c \ 27 strncpy.c \ 28 29LOCAL_MODULE := libnanolibc_os 30LOCAL_MODULE_TAGS := optional 31 32LOCAL_SRC_FILES := $(src_files) 33 34LOCAL_SRC_FILES_cortexm4 += memcpy-armv7m.S 35LOCAL_SRC_FILES_x86 += memcpy.c 36 37include $(BUILD_NANOHUB_OS_STATIC_LIBRARY) 38 39include $(CLEAR_NANO_VARS) 40 41LOCAL_MODULE := libnanolibc 42LOCAL_MODULE_TAGS := optional 43 44LOCAL_SRC_FILES := $(src_files) 45LOCAL_SRC_FILES += \ 46 memcpy.c \ 47 aeabi.cpp \ 48 cxa.cpp \ 49 new.cpp \ 50 crt.c \ 51 52LOCAL_C_INCLUDES = $(LOCAL_PATH) 53LOCAL_EXPORT_C_INCLUDE_DIRS := \ 54 $(LOCAL_C_INCLUDES) 55 56include $(BUILD_NANOHUB_APP_STATIC_LIBRARY) 57