779701db51
Extend minzip, recovery, and updater to set the security context on files based on the file_contexts configuration included in the package. Change-Id: Ied379f266a16c64f2b4dca15dc39b98fcce16f29
25 lines
430 B
Makefile
25 lines
430 B
Makefile
LOCAL_PATH := $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES := \
|
|
Hash.c \
|
|
SysUtil.c \
|
|
DirUtil.c \
|
|
Inlines.c \
|
|
Zip.c
|
|
|
|
LOCAL_C_INCLUDES += \
|
|
external/zlib \
|
|
external/safe-iop/include
|
|
|
|
ifeq ($(HAVE_SELINUX),true)
|
|
LOCAL_C_INCLUDES += external/libselinux/include
|
|
LOCAL_STATIC_LIBRARIES += libselinux
|
|
LOCAL_CFLAGS += -DHAVE_SELINUX
|
|
endif
|
|
|
|
LOCAL_MODULE := libminzip
|
|
|
|
LOCAL_CFLAGS += -Wall
|
|
|
|
include $(BUILD_STATIC_LIBRARY)
|