replicant-frameworks_native/opengl/libGLES_CM/Android.mk
The Android Open Source Project 7c1b96a165 Initial Contribution
2008-10-21 07:00:00 -07:00

23 lines
420 B
Makefile

LOCAL_PATH:= $(call my-dir)
#
# Build the wrapper OpenGL ES library
#
include $(CLEAR_VARS)
LOCAL_SRC_FILES:= gl_wrapper.cpp.arm gl_logger.cpp
LOCAL_SHARED_LIBRARIES += libcutils libutils libui
LOCAL_LDLIBS := -lpthread -ldl
LOCAL_MODULE:= libGLES_CM
# needed on sim build because of weird logging issues
ifeq ($(TARGET_SIMULATOR),true)
else
LOCAL_SHARED_LIBRARIES += libdl
endif
include $(BUILD_SHARED_LIBRARY)