2016-12-30 06:06:19 +08:00
|
|
|
LOCAL_PATH := $(call my-dir)
|
2016-09-08 20:59:48 +08:00
|
|
|
|
2017-07-31 23:47:50 +08:00
|
|
|
########################
|
|
|
|
# Binaries
|
|
|
|
########################
|
|
|
|
|
2018-05-13 03:04:40 +08:00
|
|
|
ifdef B_MAGISK
|
2017-11-06 05:41:03 +08:00
|
|
|
|
2017-04-05 03:44:13 +08:00
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE := magisk
|
2021-01-08 00:53:24 -08:00
|
|
|
LOCAL_STATIC_LIBRARIES := libnanopb libsystemproperties libutils libxhook
|
2020-04-06 22:45:08 -07:00
|
|
|
LOCAL_C_INCLUDES := jni/include
|
2017-04-05 03:44:13 +08:00
|
|
|
|
|
|
|
LOCAL_SRC_FILES := \
|
2020-12-30 22:11:24 -08:00
|
|
|
core/applets.cpp \
|
|
|
|
core/magisk.cpp \
|
|
|
|
core/daemon.cpp \
|
|
|
|
core/bootstages.cpp \
|
|
|
|
core/socket.cpp \
|
|
|
|
core/db.cpp \
|
|
|
|
core/scripting.cpp \
|
|
|
|
core/restorecon.cpp \
|
|
|
|
core/module.cpp \
|
|
|
|
magiskhide/magiskhide.cpp \
|
|
|
|
magiskhide/proc_monitor.cpp \
|
|
|
|
magiskhide/hide_utils.cpp \
|
|
|
|
magiskhide/hide_policy.cpp \
|
|
|
|
resetprop/persist_properties.cpp \
|
|
|
|
resetprop/resetprop.cpp \
|
|
|
|
su/su.cpp \
|
|
|
|
su/connect.cpp \
|
|
|
|
su/pts.cpp \
|
2021-01-06 22:21:17 -08:00
|
|
|
su/su_daemon.cpp \
|
|
|
|
inject/entry.cpp \
|
2021-01-08 00:53:24 -08:00
|
|
|
inject/utils.cpp \
|
2021-01-09 17:41:25 -08:00
|
|
|
inject/hook.cpp
|
2017-04-05 06:08:53 +08:00
|
|
|
|
2017-04-05 03:44:13 +08:00
|
|
|
LOCAL_LDLIBS := -llog
|
|
|
|
include $(BUILD_EXECUTABLE)
|
|
|
|
|
2017-12-04 15:16:41 +08:00
|
|
|
endif
|
|
|
|
|
2017-11-06 05:41:03 +08:00
|
|
|
include $(CLEAR_VARS)
|
2019-02-24 08:13:27 -05:00
|
|
|
|
|
|
|
ifdef B_INIT
|
2017-11-06 05:41:03 +08:00
|
|
|
LOCAL_MODULE := magiskinit
|
2019-02-24 08:13:27 -05:00
|
|
|
BB_INIT := 1
|
|
|
|
else ifdef B_INIT64
|
|
|
|
LOCAL_MODULE := magiskinit64
|
|
|
|
LOCAL_CPPFLAGS += -DUSE_64BIT
|
|
|
|
BB_INIT := 1
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifdef BB_INIT
|
|
|
|
|
2018-09-27 03:30:16 -04:00
|
|
|
LOCAL_STATIC_LIBRARIES := libsepol libxz libutils
|
2017-11-10 00:54:54 +08:00
|
|
|
LOCAL_C_INCLUDES := \
|
2020-12-30 22:11:24 -08:00
|
|
|
jni/include \
|
|
|
|
out \
|
|
|
|
out/$(TARGET_ARCH_ABI)
|
2017-11-10 00:54:54 +08:00
|
|
|
|
2017-11-06 05:41:03 +08:00
|
|
|
LOCAL_SRC_FILES := \
|
2020-12-30 22:11:24 -08:00
|
|
|
init/init.cpp \
|
|
|
|
init/mount.cpp \
|
|
|
|
init/rootdir.cpp \
|
|
|
|
init/getinfo.cpp \
|
|
|
|
init/twostage.cpp \
|
|
|
|
init/raw_data.cpp \
|
|
|
|
core/socket.cpp \
|
|
|
|
magiskpolicy/sepolicy.cpp \
|
|
|
|
magiskpolicy/magiskpolicy.cpp \
|
|
|
|
magiskpolicy/rules.cpp \
|
|
|
|
magiskpolicy/policydb.cpp \
|
|
|
|
magiskpolicy/statement.cpp \
|
|
|
|
magiskboot/pattern.cpp
|
2017-11-06 05:41:03 +08:00
|
|
|
|
|
|
|
LOCAL_LDFLAGS := -static
|
|
|
|
include $(BUILD_EXECUTABLE)
|
|
|
|
|
2018-05-13 03:04:40 +08:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifdef B_BOOT
|
|
|
|
|
2017-07-31 23:47:50 +08:00
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE := magiskboot
|
2018-09-27 03:30:16 -04:00
|
|
|
LOCAL_STATIC_LIBRARIES := libmincrypt liblzma liblz4 libbz2 libfdt libutils
|
2020-04-06 22:45:08 -07:00
|
|
|
LOCAL_C_INCLUDES := jni/include
|
2017-04-05 03:44:13 +08:00
|
|
|
|
2017-07-31 23:47:50 +08:00
|
|
|
LOCAL_SRC_FILES := \
|
2020-12-30 22:11:24 -08:00
|
|
|
magiskboot/main.cpp \
|
|
|
|
magiskboot/bootimg.cpp \
|
|
|
|
magiskboot/hexpatch.cpp \
|
|
|
|
magiskboot/compress.cpp \
|
|
|
|
magiskboot/format.cpp \
|
|
|
|
magiskboot/dtb.cpp \
|
|
|
|
magiskboot/ramdisk.cpp \
|
|
|
|
magiskboot/pattern.cpp \
|
|
|
|
utils/cpio.cpp
|
2017-07-30 20:14:12 +08:00
|
|
|
|
2017-11-06 05:41:03 +08:00
|
|
|
LOCAL_LDLIBS := -lz
|
2019-02-23 17:01:44 -05:00
|
|
|
LOCAL_LDFLAGS := -static
|
2017-09-11 17:34:05 +08:00
|
|
|
include $(BUILD_EXECUTABLE)
|
|
|
|
|
2018-05-13 03:04:40 +08:00
|
|
|
endif
|
|
|
|
|
2020-01-21 00:48:52 +08:00
|
|
|
ifdef B_POLICY
|
|
|
|
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE := magiskpolicy
|
|
|
|
LOCAL_STATIC_LIBRARIES := libsepol libutils
|
2020-04-06 22:45:08 -07:00
|
|
|
LOCAL_C_INCLUDES := jni/include
|
2020-01-21 00:48:52 +08:00
|
|
|
|
|
|
|
LOCAL_SRC_FILES := \
|
2020-12-30 22:11:24 -08:00
|
|
|
core/applet_stub.cpp \
|
|
|
|
magiskpolicy/sepolicy.cpp \
|
|
|
|
magiskpolicy/magiskpolicy.cpp \
|
|
|
|
magiskpolicy/rules.cpp \
|
|
|
|
magiskpolicy/policydb.cpp \
|
|
|
|
magiskpolicy/statement.cpp
|
2020-01-21 00:48:52 +08:00
|
|
|
|
|
|
|
LOCAL_CFLAGS := -DAPPLET_STUB_MAIN=magiskpolicy_main
|
|
|
|
LOCAL_LDFLAGS := -static
|
|
|
|
include $(BUILD_EXECUTABLE)
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifdef B_PROP
|
|
|
|
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE := resetprop
|
|
|
|
LOCAL_STATIC_LIBRARIES := libnanopb libsystemproperties libutils
|
2020-04-06 22:45:08 -07:00
|
|
|
LOCAL_C_INCLUDES := jni/include
|
2020-01-21 00:48:52 +08:00
|
|
|
|
|
|
|
LOCAL_SRC_FILES := \
|
2020-12-30 22:11:24 -08:00
|
|
|
core/applet_stub.cpp \
|
|
|
|
resetprop/persist_properties.cpp \
|
|
|
|
resetprop/resetprop.cpp \
|
2020-01-21 00:48:52 +08:00
|
|
|
|
|
|
|
LOCAL_CFLAGS := -DAPPLET_STUB_MAIN=resetprop_main
|
|
|
|
LOCAL_LDFLAGS := -static
|
|
|
|
include $(BUILD_EXECUTABLE)
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
2019-04-01 02:46:09 -04:00
|
|
|
ifdef B_TEST
|
2021-01-05 00:01:02 -08:00
|
|
|
ifneq (,$(wildcard jni/test.cpp))
|
2019-04-01 02:46:09 -04:00
|
|
|
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE := test
|
|
|
|
LOCAL_STATIC_LIBRARIES := libutils
|
2020-04-06 22:45:08 -07:00
|
|
|
LOCAL_C_INCLUDES := jni/include
|
2019-04-01 02:46:09 -04:00
|
|
|
LOCAL_SRC_FILES := test.cpp
|
|
|
|
include $(BUILD_EXECUTABLE)
|
|
|
|
|
2021-01-05 00:01:02 -08:00
|
|
|
endif
|
2019-04-01 02:46:09 -04:00
|
|
|
endif
|
|
|
|
|
2018-05-13 03:04:40 +08:00
|
|
|
ifdef B_BB
|
|
|
|
|
2017-09-14 01:44:36 +08:00
|
|
|
include jni/external/busybox/Android.mk
|
2017-07-31 23:47:50 +08:00
|
|
|
|
2017-11-06 05:41:03 +08:00
|
|
|
endif
|
|
|
|
|
2017-07-31 23:47:50 +08:00
|
|
|
########################
|
2018-09-27 03:11:10 -04:00
|
|
|
# Libraries
|
2017-07-31 23:47:50 +08:00
|
|
|
########################
|
2018-09-27 03:30:16 -04:00
|
|
|
include jni/utils/Android.mk
|
2017-07-31 23:47:50 +08:00
|
|
|
include jni/external/Android.mk
|