Dees Troy | 8931007 | 2013-11-11 15:14:14 +0000 | [diff] [blame] | 1 | LOCAL_PATH:= $(call my-dir) |
| 2 | include $(CLEAR_VARS) |
| 3 | ifeq ($(TW_INCLUDE_JB_CRYPTO), true) |
| 4 | LOCAL_SRC_FILES:= \ |
| 5 | getfooter.c |
| 6 | LOCAL_CFLAGS:= -g -c -W |
| 7 | LOCAL_MODULE:=getfooter |
| 8 | LOCAL_MODULE_TAGS:= eng |
| 9 | LOCAL_STATIC_LIBRARIES += libfs_mgrtwrp libc libcutils |
| 10 | LOCAL_MODULE_CLASS := UTILITY_EXECUTABLES |
| 11 | LOCAL_MODULE_PATH := $(PRODUCT_OUT)/utilities |
| 12 | LOCAL_FORCE_STATIC_EXECUTABLE := true |
| 13 | LOCAL_C_INCLUDES := bootable/recovery/crypto/jb/ |
| 14 | include $(BUILD_EXECUTABLE) |
| 15 | endif |