479311bc7c
Now that copy-file-to-target doesn't use acp, nothing in the acp build path uses acp, so we don't need to special case it to prevent loops. Change-Id: I12810c1b064d0c03135a80077a76bc4c9cc18b24
18 lines
441 B
Makefile
18 lines
441 B
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES:= \
|
|
CopyFile.c
|
|
|
|
LOCAL_CFLAGS := -Werror -Wall
|
|
|
|
LOCAL_MODULE:= libhost
|
|
LOCAL_MODULE_HOST_OS := darwin linux windows
|
|
LOCAL_C_INCLUDES := $(LOCAL_PATH)/include
|
|
LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH)/include
|
|
LOCAL_CXX_STL := none
|
|
|
|
include $(BUILD_HOST_STATIC_LIBRARY)
|
|
|
|
# Include toolchain prebuilt modules if they exist.
|
|
-include $(TARGET_TOOLCHAIN_ROOT)/toolchain.mk
|