android_mt6572_jiabo/ndk/tests/build/prebuild-stlport/jni/Android.mk
2025-09-05 16:56:03 +08:00

15 lines
400 B
Makefile

LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
LOCAL_MODULE := build_stlport_static
LOCAL_SRC_FILES := build_stlport.cpp
LOCAL_STATIC_LIBRARIES := stlport_static
include $(BUILD_EXECUTABLE)
include $(CLEAR_VARS)
LOCAL_MODULE := build_stlport_shared
LOCAL_SRC_FILES := build_stlport.cpp
LOCAL_SHARED_LIBRARIES := stlport_shared
include $(BUILD_EXECUTABLE)
$(call import-module,cxx-stl/stlport)