Files
android_development/ndk/sources/cpufeatures/Android.mk
David 'Digit' Turner 43809914f6 Add 'cpufeatures' library to perform runtime CPU family/features detection.
It is provided as a static library that NDK developers can link against.
The code is designed to run on all official Android platforms, starting
from Android 1.5.
2010-02-05 16:03:39 -08:00

11 lines
303 B
Makefile

LOCAL_PATH := $(call my-dir)
# If targetting ARM CPUs, build the ARMv7 detection
# function. It will only be called by the main
# library if we detect ARMv7 through a system property.
#
include $(CLEAR_VARS)
LOCAL_MODULE := cpufeatures
LOCAL_SRC_FILES := cpu-features.c
include $(BUILD_STATIC_LIBRARY)