- libmincrypt renamed to libmincrypttwrp that is an static library - libjpegtwrp does not exist - libfs_mgrtwrp is for JB decryption methods This fixes making full builds when TW_INCLUDE_CRYPTO_SAMSUNG := true and TW_INCLUDE_CRYPTO := true are set. Somehow typing make recoveryimage doesnt push the mentioned issue. Change-Id: I7cad5db4f51152a1a8209e619b188ca88d7c74d1
18 lines
482 B
Makefile
18 lines
482 B
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
ifeq ($(TW_INCLUDE_CRYPTO), true)
|
|
LOCAL_SRC_FILES:= \
|
|
cryptsettings.c
|
|
LOCAL_CFLAGS:= -g -c -W
|
|
LOCAL_MODULE:=cryptsettings
|
|
LOCAL_MODULE_TAGS:= eng
|
|
LOCAL_SHARED_LIBRARIES += libc libcutils
|
|
ifeq ($(TW_INCLUDE_JB_CRYPTO), true)
|
|
LOCAL_CFLAGS += -DTW_INCLUDE_JB_CRYPTO
|
|
LOCAL_STATIC_LIBRARIES += libfs_mgrtwrp
|
|
endif
|
|
LOCAL_MODULE_CLASS := UTILITY_EXECUTABLES
|
|
LOCAL_MODULE_PATH := $(PRODUCT_OUT)/utilities
|
|
include $(BUILD_EXECUTABLE)
|
|
endif
|