145ae32069
We still support HOST_OS=windows for the SDK host tools cross-builds, but that's only when USE_MINGW is set when running under linux. Change-Id: I37da87dc9fbbd69ba10ce4d7f2668ab3f6482d92
24 lines
493 B
Makefile
24 lines
493 B
Makefile
# Copyright 2005 The Android Open Source Project
|
|
#
|
|
# Custom version of cp.
|
|
|
|
LOCAL_PATH:= $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk
|
|
|
|
LOCAL_SRC_FILES := \
|
|
acp.c
|
|
|
|
ifeq ($(HOST_OS),darwin)
|
|
LOCAL_CFLAGS += -DMACOSX_RSRC
|
|
endif
|
|
ifeq ($(HOST_OS),linux)
|
|
endif
|
|
|
|
LOCAL_STATIC_LIBRARIES := libhost
|
|
LOCAL_C_INCLUDES := build/libs/host/include
|
|
LOCAL_MODULE := acp
|
|
LOCAL_ACP_UNAVAILABLE := true
|
|
LOCAL_CXX_STL := none
|
|
|
|
include $(BUILD_HOST_EXECUTABLE)
|