| # Copyright 2009 The Android Open Source Project |
| LOCAL_PATH := $(call my-dir) |
| # Build the host-side command line tool |
| LOCAL_CPPFLAGS += -Wno-unused-parameter |
| LOCAL_CPPFLAGS += -Wno-deprecated-register |
| LOCAL_C_INCLUDES += $(LOCAL_PATH)/.. |
| LOCAL_STATIC_LIBRARIES += libbase |
| include $(BUILD_HOST_EXECUTABLE) |
| # Build the device-side library |
| LOCAL_SRC_FILES := $(edify_src_files) |
| LOCAL_CPPFLAGS := -Wno-unused-parameter |
| LOCAL_CPPFLAGS += -Wno-deprecated-register |
| LOCAL_C_INCLUDES += $(LOCAL_PATH)/.. |
| LOCAL_STATIC_LIBRARIES += libbase |
| include $(BUILD_STATIC_LIBRARY) |