9 lines
237 B
Makefile
9 lines
237 B
Makefile
LOCAL_PATH := $(call my-dir)
|
|
|
|
ifeq ($(strip $(filter-out $(NDK_KNOWN_ARCHS),$(TARGET_ARCH))),)
|
|
include $(CLEAR_VARS)
|
|
LOCAL_MODULE := ssax_instruction
|
|
LOCAL_ARM_NEON := true
|
|
LOCAL_SRC_FILES := test.S
|
|
include $(BUILD_SHARED_LIBRARY)
|
|
endif
|