Home | History | Annotate | Download | only in cpufeatures
      1 LOCAL_PATH := $(call my-dir)
      2 
      3 include $(CLEAR_VARS)
      4 LOCAL_MODULE := cpufeatures
      5 LOCAL_SRC_FILES := cpu-features.c
      6 
      7 ifdef HISTORICAL_NDK_VERSIONS_ROOT
      8 # This is included by the platform build system.
      9 LOCAL_SDK_VERSION := 9
     10 LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH)
     11 else
     12 # This is included by the NDK build system.
     13 LOCAL_EXPORT_C_INCLUDES := $(LOCAL_PATH)
     14 endif
     15 
     16 include $(BUILD_STATIC_LIBRARY)
     17