1LOCAL_PATH:= $(call my-dir) 2 3# This Android.mk serves only to build sefcontext_compile. This was needed 4# to work-around an issue/bug in the blueprint files. See the Android.bp 5# file in the same directory for more details. 6 7################################### 8include $(CLEAR_VARS) 9 10LOCAL_MODULE := sefcontext_compile 11LOCAL_MODULE_TAGS := optional 12LOCAL_CFLAGS := -Wall -Werror -DUSE_PCRE2 -DNO_PERSISTENTLY_STORED_PATTERNS 13LOCAL_SRC_FILES := utils/sefcontext_compile.c 14LOCAL_STATIC_LIBRARIES := libsepol libselinux 15LOCAL_WHOLE_STATIC_LIBRARIES := libpcre2 16LOCAL_CXX_STL := none 17 18include $(BUILD_HOST_EXECUTABLE) 19