This patch is a major rework of the build opengl-emulation build scripts. See README for details. In a nutshell, this introduces various functions that considerably simplify the declaration of the 26+ modules in this implementation, by handling auto-generation of sources and module imports/exports. Change-Id: I827522d783c7b6cf5eafd37204a1025c235458cd
16 lines
343 B
Makefile
16 lines
343 B
Makefile
LOCAL_PATH := $(call my-dir)
|
|
|
|
$(call emugl-begin-shared-library,libOpenglSystemCommon)
|
|
$(call emugl-import,libGLESv1_enc lib_renderControl_enc)
|
|
|
|
LOCAL_SRC_FILES := \
|
|
HostConnection.cpp \
|
|
QemuPipeStream.cpp \
|
|
ThreadInfo.cpp
|
|
|
|
$(call emugl-export,C_INCLUDES,$(LOCAL_PATH))
|
|
|
|
LOCAL_STATIC_LIBRARIES += libqemu
|
|
|
|
$(call emugl-end-module)
|