Home | History | Annotate | Download | only in libc
      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 
     17 LOCAL_PATH := $(call my-dir)
     18 
     19 include $(CLEAR_NANO_VARS)
     20 
     21 src_files :=            \
     22     memcmp.c            \
     23     memmove.c           \
     24     memset.c            \
     25     strcasecmp.c        \
     26     strlen.c            \
     27     strncpy.c           \
     28 
     29 LOCAL_MODULE := libnanolibc_os
     30 LOCAL_MODULE_TAGS := optional
     31 
     32 LOCAL_SRC_FILES := $(src_files)
     33 
     34 LOCAL_SRC_FILES_cortexm4 += memcpy-armv7m.S
     35 LOCAL_SRC_FILES_x86 += memcpy.c
     36 
     37 include $(BUILD_NANOHUB_OS_STATIC_LIBRARY)
     38 
     39 include $(CLEAR_NANO_VARS)
     40 
     41 LOCAL_MODULE := libnanolibc
     42 LOCAL_MODULE_TAGS := optional
     43 
     44 LOCAL_SRC_FILES := $(src_files)
     45 LOCAL_SRC_FILES +=      \
     46     memcpy.c            \
     47     aeabi.cpp           \
     48     cxa.cpp             \
     49     new.cpp             \
     50     crt.c               \
     51 
     52 LOCAL_C_INCLUDES = $(LOCAL_PATH)
     53 LOCAL_EXPORT_C_INCLUDE_DIRS := \
     54     $(LOCAL_C_INCLUDES)
     55 
     56 include $(BUILD_NANOHUB_APP_STATIC_LIBRARY)
     57