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)
|