1# A small sample used to demonstrate static C++ destructors 2LOCAL_PATH := $(call my-dir) 3 4include $(CLEAR_VARS) 5LOCAL_MODULE := libtest1 6LOCAL_SRC_FILES := libtest1.cpp 7include $(BUILD_SHARED_LIBRARY) 8 9include $(CLEAR_VARS) 10LOCAL_MODULE := test_dlclose_destruction 11LOCAL_SRC_FILES := main.c 12include $(BUILD_EXECUTABLE) 13