You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
420 B
15 lines
420 B
LOCAL_PATH:= $(call my-dir) |
|
|
|
################################### |
|
include $(CLEAR_VARS) |
|
|
|
LOCAL_MODULE := sepolicy-analyze |
|
LOCAL_MODULE_TAGS := optional |
|
LOCAL_CFLAGS := -Wall -Werror |
|
LOCAL_SRC_FILES := sepolicy-analyze.c dups.c neverallow.c perm.c typecmp.c booleans.c attribute.c utils.c |
|
LOCAL_STATIC_LIBRARIES := libsepol |
|
LOCAL_CXX_STL := none |
|
|
|
LOCAL_COMPATIBILITY_SUITE := cts gts vts |
|
|
|
include $(BUILD_HOST_EXECUTABLE)
|
|
|