1# See README to understand what this project does. 2LOCAL_PATH := $(call my-dir) 3 4include $(CLEAR_VARS) 5LOCAL_MODULE := build_stlport_static 6LOCAL_SRC_FILES := build_stlport.cpp 7LOCAL_STATIC_LIBRARIES := stlport_static 8include $(BUILD_EXECUTABLE) 9 10include $(CLEAR_VARS) 11LOCAL_MODULE := build_stlport_shared 12LOCAL_SRC_FILES := build_stlport.cpp 13LOCAL_SHARED_LIBRARIES := stlport_shared 14include $(BUILD_EXECUTABLE) 15 16$(call import-module,cxx-stl/stlport) 17