replicant-frameworks_native/opengl/tests/finish/Android.mk
Doug Kwan 4633c49daa Add back missing shared libraries used in executables in link commands. These
executables have calls to some shared libraries without explicitly linking
them.  Currently it works as linker links these libraries via dependencies of
other libraries.  This is fragile and not the right thing to do.
2009-10-04 19:27:57 -07:00

21 lines
313 B
Makefile

LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)
LOCAL_SRC_FILES:= \
finish.cpp
LOCAL_SHARED_LIBRARIES := \
libcutils \
libutils \
libEGL \
libGLESv1_CM \
libui
LOCAL_MODULE:= test-opengl-finish
LOCAL_MODULE_TAGS := optional
LOCAL_CFLAGS := -DGL_GLEXT_PROTOTYPES
include $(BUILD_EXECUTABLE)