1 # Copyright 2005 The Android Open Source Project 2 # 3 # Custom version of cp. 4 5 LOCAL_PATH:= $(call my-dir) 6 include $(CLEAR_VARS) 7 8 LOCAL_SRC_FILES := \ 9 acp.c 10 11 ifeq ($(HOST_OS),cygwin) 12 LOCAL_CFLAGS += -DWIN32_EXE 13 endif 14 ifeq ($(HOST_OS),darwin) 15 LOCAL_CFLAGS += -DMACOSX_RSRC 16 endif 17 ifeq ($(HOST_OS),linux) 18 endif 19 20 LOCAL_STATIC_LIBRARIES := libhost 21 LOCAL_C_INCLUDES := build/libs/host/include 22 LOCAL_MODULE := acp 23 LOCAL_ACP_UNAVAILABLE := true 24 25 include $(BUILD_HOST_EXECUTABLE) 26 27