android_mt6572_jiabo/development/ndk/tests/dlclose-destruction/jni/Android.mk
2025-09-05 16:56:03 +08:00

12 lines
319 B
Makefile

# A small sample used to demonstrate static C++ destructors
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
LOCAL_MODULE := libtest1
LOCAL_SRC_FILES := libtest1.cpp
include $(BUILD_SHARED_LIBRARY)
include $(CLEAR_VARS)
LOCAL_MODULE := test_dlclose_destruction
LOCAL_SRC_FILES := main.c
include $(BUILD_EXECUTABLE)