1LOCAL_PATH:= $(call my-dir)
2include $(CLEAR_VARS)
3
4LOCAL_SRC_FILES:= \
5    CopyFile.c
6
7ifeq ($(HOST_OS),cygwin)
8LOCAL_CFLAGS += -DWIN32_EXE
9endif
10ifeq ($(HOST_OS),darwin)
11LOCAL_CFLAGS += -DMACOSX_RSRC
12endif
13ifeq ($(HOST_OS),linux)
14endif
15
16LOCAL_MODULE:= libhost
17LOCAL_C_INCLUDES := $(LOCAL_PATH)/include
18
19# acp uses libhost, so we can't use
20# acp to install libhost.
21LOCAL_ACP_UNAVAILABLE:= true
22
23include $(BUILD_HOST_STATIC_LIBRARY)
24
25# Include toolchain prebuilt modules if they exist.
26-include $(TARGET_TOOLCHAIN_ROOT)/toolchain.mk
27