| # Copyright 2010 The Android Open Source Project |
| # Opaque Binary Blob (OBB) Tool |
| # This tool is prebuilt if we're doing an app-only build. |
| ifeq ($(TARGET_BUILD_APPS),) |
| LOCAL_PATH:= $(call my-dir) |
| LOCAL_CFLAGS := -Wall -Werror -Wno-mismatched-tags |
| LOCAL_STATIC_LIBRARIES := \ |
| LOCAL_LDLIBS += -ldl -lpthread |
| include $(BUILD_HOST_EXECUTABLE) |
| ##################################################### |
| LOCAL_MODULE := pbkdf2gen |
| LOCAL_MODULE_TAGS := optional |
| LOCAL_CFLAGS := -Wall -Werror -Wno-mismatched-tags |
| LOCAL_SRC_FILES := pbkdf2gen.cpp |
| LOCAL_STATIC_LIBRARIES := libcrypto_static |
| include $(BUILD_HOST_EXECUTABLE) |
| ####################################################### |
| endif # TARGET_BUILD_APPS |