1 LOCAL_PATH := $(call my-dir) 2 3 include $(CLEAR_VARS) 4 LOCAL_MODULE := test_multi_static_instances 5 LOCAL_SRC_FILES := main.cpp 6 LOCAL_STATIC_LIBRARIES := libstdc++ 7 include $(BUILD_EXECUTABLE) 8 9 include $(CLEAR_VARS) 10 LOCAL_MODULE := test_multi_static_instances_stlport 11 LOCAL_SRC_FILES := main.cpp 12 LOCAL_STATIC_LIBRARIES := stlport_static 13 include $(BUILD_EXECUTABLE) 14 15 include $(CLEAR_VARS) 16 LOCAL_MODULE := test_multi_static_instances_gnustl 17 LOCAL_SRC_FILES := main.cpp 18 LOCAL_STATIC_LIBRARIES := gnustl_static 19 include $(BUILD_EXECUTABLE) 20 21 $(call import-module,cxx-stl/gnu-libstdc++) 22 $(call import-module,cxx-stl/stlport) 23 $(call import-module,cxx-stl/system)