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