1 LOCAL_PATH := $(call my-dir) 2 3 4 ### host library ############################################ 5 $(call emugl-begin-host-static-library,lib_renderControl_dec) 6 $(call emugl-import,libOpenglCodecCommon) 7 $(call emugl-gen-decoder,$(LOCAL_PATH),renderControl) 8 # For renderControl_types.h 9 $(call emugl-export,C_INCLUDES,$(LOCAL_PATH)) 10 $(call emugl-end-module) 11 12 ### host library, 64-bit #################################### 13 $(call emugl-begin-host-static-library,lib64_renderControl_dec) 14 $(call emugl-import,lib64OpenglCodecCommon) 15 $(call emugl-gen-decoder,$(LOCAL_PATH),renderControl) 16 # For renderControl_types.h 17 $(call emugl-export,C_INCLUDES,$(LOCAL_PATH)) 18 $(call emugl-export,CFLAGS,-m64) 19 $(call emugl-end-module) 20