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