1 #################################### 2 # Build modp_b64 as separate library 3 4 include $(CLEAR_VARS) 5 6 LOCAL_CPP_EXTENSION := .cc 7 LOCAL_MODULE:= modp_b64 8 LOCAL_MODULE_TAGS:= optional 9 10 LOCAL_SRC_FILES := \ 11 third_party/modp_b64/modp_b64.cc 12 13 LOCAL_C_INCLUDES := \ 14 $(LOCAL_PATH)/third_party/modp_b64 15 16 # Including this will modify the include path 17 include external/stlport/libstlport.mk 18 19 LOCAL_CFLAGS := -DHAVE_CONFIG_H -DANDROID -fvisibility=hidden 20 21 include $(BUILD_STATIC_LIBRARY) 22 23