blob: b02c1cb13b63df409e0da7609ddac537349d47c5 [file] [log] [blame]
Kenny Root6e7ac5f2010-07-19 10:31:34 -07001#
2# Copyright 2010 The Android Open Source Project
3#
4# Opaque Binary Blob (OBB) Tool
5#
6
7# This tool is prebuilt if we're doing an app-only build.
8ifeq ($(TARGET_BUILD_APPS),)
9
10LOCAL_PATH:= $(call my-dir)
11include $(CLEAR_VARS)
12
13LOCAL_SRC_FILES := \
14 Main.cpp
15
16#LOCAL_C_INCLUDES +=
17
18LOCAL_STATIC_LIBRARIES := \
19 libutils \
20 libcutils
21
22ifeq ($(HOST_OS),linux)
23LOCAL_LDLIBS += -lpthread
24endif
25
26LOCAL_MODULE := obbtool
27
28include $(BUILD_HOST_EXECUTABLE)
29
30endif # TARGET_BUILD_APPS