summaryrefslogtreecommitdiffstats
path: root/crypto/crypttools/Android.mk
diff options
context:
space:
mode:
authorDees Troy <dees_troy@teamw.in>2013-11-19 17:10:06 +0100
committerGerrit Code Review <gerrit2@gerrit>2013-11-19 17:10:06 +0100
commita2e5efba0c5f229f0519ec23b7d1eb60f53d6724 (patch)
tree6237915fc2cf708bea78dac035518b1cbf9ecb37 /crypto/crypttools/Android.mk
parentMerge "Update decrypt for 4.4" into android-4.4 (diff)
parentAdd getfooter tool for crypto debugging (diff)
downloadandroid_bootable_recovery-a2e5efba0c5f229f0519ec23b7d1eb60f53d6724.tar
android_bootable_recovery-a2e5efba0c5f229f0519ec23b7d1eb60f53d6724.tar.gz
android_bootable_recovery-a2e5efba0c5f229f0519ec23b7d1eb60f53d6724.tar.bz2
android_bootable_recovery-a2e5efba0c5f229f0519ec23b7d1eb60f53d6724.tar.lz
android_bootable_recovery-a2e5efba0c5f229f0519ec23b7d1eb60f53d6724.tar.xz
android_bootable_recovery-a2e5efba0c5f229f0519ec23b7d1eb60f53d6724.tar.zst
android_bootable_recovery-a2e5efba0c5f229f0519ec23b7d1eb60f53d6724.zip
Diffstat (limited to 'crypto/crypttools/Android.mk')
-rw-r--r--crypto/crypttools/Android.mk15
1 files changed, 15 insertions, 0 deletions
diff --git a/crypto/crypttools/Android.mk b/crypto/crypttools/Android.mk
new file mode 100644
index 000000000..a2f8dfed5
--- /dev/null
+++ b/crypto/crypttools/Android.mk
@@ -0,0 +1,15 @@
+LOCAL_PATH:= $(call my-dir)
+include $(CLEAR_VARS)
+ifeq ($(TW_INCLUDE_JB_CRYPTO), true)
+LOCAL_SRC_FILES:= \
+ getfooter.c
+LOCAL_CFLAGS:= -g -c -W
+LOCAL_MODULE:=getfooter
+LOCAL_MODULE_TAGS:= eng
+LOCAL_STATIC_LIBRARIES += libfs_mgrtwrp libc libcutils
+LOCAL_MODULE_CLASS := UTILITY_EXECUTABLES
+LOCAL_MODULE_PATH := $(PRODUCT_OUT)/utilities
+LOCAL_FORCE_STATIC_EXECUTABLE := true
+LOCAL_C_INCLUDES := bootable/recovery/crypto/jb/
+include $(BUILD_EXECUTABLE)
+endif \ No newline at end of file