2016-12-29 22:06:19 +00:00
|
|
|
LOCAL_PATH := $(call my-dir)
|
2016-09-08 12:59:48 +00:00
|
|
|
|
2017-07-31 15:47:50 +00:00
|
|
|
########################
|
|
|
|
# Binaries
|
|
|
|
########################
|
|
|
|
|
2018-05-12 19:04:40 +00:00
|
|
|
ifdef B_MAGISK
|
2017-11-05 21:41:03 +00:00
|
|
|
|
2017-04-04 19:44:13 +00:00
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE := magisk
|
2018-09-27 07:30:16 +00:00
|
|
|
LOCAL_STATIC_LIBRARIES := libnanopb libsystemproperties libutils
|
2020-04-07 05:45:08 +00:00
|
|
|
LOCAL_C_INCLUDES := jni/include
|
2017-04-04 19:44:13 +00:00
|
|
|
|
|
|
|
LOCAL_SRC_FILES := \
|
2019-01-30 08:35:07 +00:00
|
|
|
core/applets.cpp \
|
|
|
|
core/magisk.cpp \
|
|
|
|
core/daemon.cpp \
|
|
|
|
core/bootstages.cpp \
|
|
|
|
core/socket.cpp \
|
|
|
|
core/db.cpp \
|
2019-02-16 01:45:05 +00:00
|
|
|
core/scripting.cpp \
|
2018-11-01 17:23:12 +00:00
|
|
|
magiskhide/magiskhide.cpp \
|
|
|
|
magiskhide/proc_monitor.cpp \
|
|
|
|
magiskhide/hide_utils.cpp \
|
2019-05-26 09:47:57 +00:00
|
|
|
magiskhide/hide_policy.cpp \
|
2018-11-03 03:56:15 +00:00
|
|
|
resetprop/persist_properties.cpp \
|
|
|
|
resetprop/resetprop.cpp \
|
2018-11-04 08:38:06 +00:00
|
|
|
su/su.cpp \
|
|
|
|
su/connect.cpp \
|
|
|
|
su/pts.cpp \
|
|
|
|
su/su_daemon.cpp
|
2017-04-04 22:08:53 +00:00
|
|
|
|
2017-04-04 19:44:13 +00:00
|
|
|
LOCAL_LDLIBS := -llog
|
|
|
|
include $(BUILD_EXECUTABLE)
|
|
|
|
|
2017-12-04 07:16:41 +00:00
|
|
|
endif
|
|
|
|
|
2017-11-05 21:41:03 +00:00
|
|
|
include $(CLEAR_VARS)
|
2019-02-24 13:13:27 +00:00
|
|
|
|
|
|
|
ifdef B_INIT
|
2017-11-05 21:41:03 +00:00
|
|
|
LOCAL_MODULE := magiskinit
|
2019-02-24 13:13:27 +00: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 07:30:16 +00:00
|
|
|
LOCAL_STATIC_LIBRARIES := libsepol libxz libutils
|
2017-11-09 16:54:54 +00:00
|
|
|
LOCAL_C_INCLUDES := \
|
|
|
|
jni/include \
|
2018-06-13 16:59:08 +00:00
|
|
|
out \
|
2020-04-07 05:45:08 +00:00
|
|
|
out/$(TARGET_ARCH_ABI)
|
2017-11-09 16:54:54 +00:00
|
|
|
|
2017-11-05 21:41:03 +00:00
|
|
|
LOCAL_SRC_FILES := \
|
2019-05-27 07:29:43 +00:00
|
|
|
init/init.cpp \
|
2019-12-06 17:02:34 +00:00
|
|
|
init/mount.cpp \
|
2019-06-23 22:14:47 +00:00
|
|
|
init/rootdir.cpp \
|
2019-05-27 07:29:43 +00:00
|
|
|
init/getinfo.cpp \
|
2020-04-01 11:39:28 +00:00
|
|
|
init/twostage.cpp \
|
2018-11-08 09:20:16 +00:00
|
|
|
magiskpolicy/api.cpp \
|
|
|
|
magiskpolicy/magiskpolicy.cpp \
|
|
|
|
magiskpolicy/rules.cpp \
|
2019-03-15 10:17:37 +00:00
|
|
|
magiskpolicy/policydb.cpp \
|
2019-12-09 09:14:30 +00:00
|
|
|
magiskpolicy/statement.cpp \
|
2018-09-27 07:30:16 +00:00
|
|
|
magiskpolicy/sepolicy.c
|
2017-11-05 21:41:03 +00:00
|
|
|
|
|
|
|
LOCAL_LDFLAGS := -static
|
|
|
|
include $(BUILD_EXECUTABLE)
|
|
|
|
|
2018-05-12 19:04:40 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifdef B_BOOT
|
|
|
|
|
2017-07-31 15:47:50 +00:00
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE := magiskboot
|
2018-09-27 07:30:16 +00:00
|
|
|
LOCAL_STATIC_LIBRARIES := libmincrypt liblzma liblz4 libbz2 libfdt libutils
|
2020-04-07 05:45:08 +00:00
|
|
|
LOCAL_C_INCLUDES := jni/include
|
2017-04-04 19:44:13 +00:00
|
|
|
|
2017-07-31 15:47:50 +00:00
|
|
|
LOCAL_SRC_FILES := \
|
2018-10-25 01:08:06 +00:00
|
|
|
magiskboot/main.cpp \
|
2018-10-20 03:10:47 +00:00
|
|
|
magiskboot/bootimg.cpp \
|
2018-10-25 01:08:06 +00:00
|
|
|
magiskboot/hexpatch.cpp \
|
|
|
|
magiskboot/compress.cpp \
|
|
|
|
magiskboot/format.cpp \
|
|
|
|
magiskboot/dtb.cpp \
|
|
|
|
magiskboot/ramdisk.cpp \
|
|
|
|
magiskboot/pattern.cpp
|
2017-07-30 12:14:12 +00:00
|
|
|
|
2017-11-05 21:41:03 +00:00
|
|
|
LOCAL_LDLIBS := -lz
|
2019-02-23 22:01:44 +00:00
|
|
|
LOCAL_LDFLAGS := -static
|
2017-09-11 09:34:05 +00:00
|
|
|
include $(BUILD_EXECUTABLE)
|
|
|
|
|
2018-05-12 19:04:40 +00:00
|
|
|
endif
|
|
|
|
|
2020-01-20 16:48:52 +00:00
|
|
|
ifdef B_POLICY
|
|
|
|
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE := magiskpolicy
|
|
|
|
LOCAL_STATIC_LIBRARIES := libsepol libutils
|
2020-04-07 05:45:08 +00:00
|
|
|
LOCAL_C_INCLUDES := jni/include
|
2020-01-20 16:48:52 +00:00
|
|
|
|
|
|
|
LOCAL_SRC_FILES := \
|
|
|
|
core/applet_stub.cpp \
|
|
|
|
magiskpolicy/api.cpp \
|
|
|
|
magiskpolicy/magiskpolicy.cpp \
|
|
|
|
magiskpolicy/rules.cpp \
|
|
|
|
magiskpolicy/policydb.cpp \
|
|
|
|
magiskpolicy/statement.cpp \
|
|
|
|
magiskpolicy/sepolicy.c
|
|
|
|
|
|
|
|
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-07 05:45:08 +00:00
|
|
|
LOCAL_C_INCLUDES := jni/include
|
2020-01-20 16:48:52 +00:00
|
|
|
|
|
|
|
LOCAL_SRC_FILES := \
|
|
|
|
core/applet_stub.cpp \
|
|
|
|
resetprop/persist_properties.cpp \
|
|
|
|
resetprop/resetprop.cpp \
|
|
|
|
|
|
|
|
LOCAL_CFLAGS := -DAPPLET_STUB_MAIN=resetprop_main
|
|
|
|
LOCAL_LDFLAGS := -static
|
|
|
|
include $(BUILD_EXECUTABLE)
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
2019-04-01 06:46:09 +00:00
|
|
|
ifdef B_TEST
|
|
|
|
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE := test
|
|
|
|
LOCAL_STATIC_LIBRARIES := libutils
|
2020-04-07 05:45:08 +00:00
|
|
|
LOCAL_C_INCLUDES := jni/include
|
2019-04-01 06:46:09 +00:00
|
|
|
LOCAL_SRC_FILES := test.cpp
|
2019-07-08 00:38:22 +00:00
|
|
|
LOCAL_LDFLAGS := -static
|
2019-04-01 06:46:09 +00:00
|
|
|
include $(BUILD_EXECUTABLE)
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
2018-05-12 19:04:40 +00:00
|
|
|
ifdef B_BB
|
|
|
|
|
2017-09-13 17:44:36 +00:00
|
|
|
include jni/external/busybox/Android.mk
|
2017-07-31 15:47:50 +00:00
|
|
|
|
2017-11-05 21:41:03 +00:00
|
|
|
endif
|
|
|
|
|
2017-07-31 15:47:50 +00:00
|
|
|
########################
|
2018-09-27 07:11:10 +00:00
|
|
|
# Libraries
|
2017-07-31 15:47:50 +00:00
|
|
|
########################
|
2018-09-27 07:30:16 +00:00
|
|
|
include jni/utils/Android.mk
|
|
|
|
include jni/systemproperties/Android.mk
|
2017-07-31 15:47:50 +00:00
|
|
|
include jni/external/Android.mk
|