The idea is to allow developing the NDK in the open, while having the platforms and samples under a private branch until the corresponding release are open-sourced. Change-Id: Iee995fb6c4d3ee1387dea7486e599e079c9e4c6d
11 lines
209 B
Makefile
11 lines
209 B
Makefile
LOCAL_PATH:= $(LOCAL_PATH)/jni
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE := libgl2jni
|
|
LOCAL_CFLAGS := -Werror
|
|
LOCAL_SRC_FILES := gl_code.cpp
|
|
LOCAL_LDLIBS := -llog -lGLESv2
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|