mirror of
https://github.com/LSPosed/LSPlant.git
synced 2025-05-04 20:42:02 +08:00
16 lines
405 B
Makefile
16 lines
405 B
Makefile
|
LOCAL_PATH := $(call my-dir)
|
||
|
|
||
|
include $(CLEAR_VARS)
|
||
|
|
||
|
LOCAL_MODULE := lsplant
|
||
|
LOCAL_C_INCLUDES := $(LOCAL_PATH)/include
|
||
|
LOCAL_SRC_FILES := lsplant.cc
|
||
|
LOCAL_EXPORT_C_INCLUDES:= $(LOCAL_PATH)/include
|
||
|
LOCAL_STATIC_LIBRARIES := cxx dex_builder
|
||
|
LOCAL_LDLIBS := -llog
|
||
|
include $(BUILD_SHARED_LIBRARY)
|
||
|
|
||
|
$(call import-module,prefab/cxx)
|
||
|
include jni/external/dex_builder/Android.mk
|
||
|
|