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 ifdef EMUGL_BUILD_64BITS 14 $(call emugl-begin-host64-static-library,lib64_renderControl_dec) 15 $(call emugl-import,lib64OpenglCodecCommon) 16 $(call emugl-gen-decoder,$(LOCAL_PATH),renderControl) 17 # For renderControl_types.h 18 $(call emugl-export,C_INCLUDES,$(LOCAL_PATH)) 19 $(call emugl-export,CFLAGS,-m64) 20 $(call emugl-end-module) 21 endif