ef4fd30672
Also, divide each sepolicy-analyze function into its own component for simplified command-line parsing and potentially eventual modularization. Bug: 18005561 Change-Id: I45fa07d776cf1bec7d60dba0c03ee05142b86c19
13 lines
379 B
Makefile
13 lines
379 B
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
|
|
###################################
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE := sepolicy-analyze
|
|
LOCAL_MODULE_TAGS := optional
|
|
LOCAL_C_INCLUDES := external/libsepol/include
|
|
LOCAL_CFLAGS := -Wall -Werror
|
|
LOCAL_SRC_FILES := sepolicy-analyze.c dups.c neverallow.c perm.c typecmp.c utils.c
|
|
LOCAL_STATIC_LIBRARIES := libsepol
|
|
|
|
include $(BUILD_HOST_EXECUTABLE)
|