I want to get the root access automatically in the android and i find the opensource,su.And i want to compile it into the android's system.img.So,i put the project into the $android_source/external and rewrite its Android.mk into:
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
LOCAL_MODULE := su-binary
LOCAL_SRC_FILES := su.c db.c activity.c utils.c
LOCAL_C_INCLUDES += external/sqlite/dist
LOCAL_STATIC_LIBRARIES := \
liblog \
libsqlite \
libc \
#LOCAL_MODULE_PATH := $(TARGET_OUT_OPTIONAL_EXECUTABLES)
LOCAL_MODULE_TAGS := optional
LOCAL_FORCE_STATIC_EXECUTABLE := true
include $(BUILD_EXECUTABLE)
And use the command,mmm ./external/su-binary to build the su-binary into the system.img.
But,it prompt the following errors:
make: *** No rule to make target `out/target/product/generic/obj/STATIC_LIBRARIES/libsqlite_intermediates/libsqlite.a', needed by `out/target/product/generic/obj/EXECUTABLES/su-binary_intermediates/LINKED/su-binary'. Stop.
And,i feel really confused that why not the libsqlite.a is not built into system in default. Any idea?thank u!