Created
March 1, 2022 23:38
-
-
Save rumplestilzken/73eff85f5c372dedaaefb94ed8f7fb8a to your computer and use it in GitHub Desktop.
Android.mk used to build sqlite3 as a static library
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
LOCAL_PATH := $(call my-dir) | |
include $(CLEAR_VARS) | |
LOCAL_MODULE := sqlite3 | |
LOCAL_SRC_FILES := \ | |
$(subst $(LOCAL_PATH)/,, \ | |
$(wildcard $(LOCAL_PATH)/*.c)) | |
LOCAL_EXPORT_C_INCLUDES := $(LOCAL_PATH) | |
include $(BUILD_STATIC_LIBRARY) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment