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