1######################################################################### 2# OpenGL ES JNI sample 3# This makefile builds both an activity and a shared library. 4######################################################################### 5ifneq ($(TARGET_SIMULATOR),true) # not 64 bit clean 6 7TOP_LOCAL_PATH:= $(call my-dir) 8 9# Build activity 10 11LOCAL_PATH:= $(call my-dir) 12include $(CLEAR_VARS) 13 14LOCAL_MODULE_TAGS := optional 15 16LOCAL_SRC_FILES := $(call all-subdir-java-files) 17 18LOCAL_PACKAGE_NAME := TestEGL 19 20include $(BUILD_PACKAGE) 21 22endif # TARGET_SIMULATOR 23