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
17 lines
270 B
Makefile
17 lines
270 B
Makefile
# Copyright 2005 The Android Open Source Project
|
|
#
|
|
# Custom version of cp.
|
|
|
|
LOCAL_PATH:= $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES := \
|
|
acp.c
|
|
|
|
LOCAL_STATIC_LIBRARIES := libhost
|
|
LOCAL_MODULE := acp
|
|
LOCAL_CXX_STL := none
|
|
|
|
include $(BUILD_HOST_EXECUTABLE)
|