mirror of
https://github.com/topjohnwu/Magisk.git
synced 2024-11-24 10:35:26 +00:00
f476daa041
libsqlite and libselinux are shipped with Android systems We build them here for the compiler to link against it, we actually use the one in /system/lib(64)
11 lines
166 B
Makefile
11 lines
166 B
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
|
|
##
|
|
# libsqlite.so
|
|
#
|
|
|
|
include $(CLEAR_VARS)
|
|
LOCAL_MODULE:= libsqlite
|
|
LOCAL_SRC_FILES := sqlite3.c shell.c
|
|
include $(BUILD_SHARED_LIBRARY)
|