The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1 | # Copyright 2005 The Android Open Source Project |
| 2 | # |
| 3 | # Custom version of cp. |
| 4 | |
| 5 | LOCAL_PATH:= $(call my-dir) |
Elliott Hughes | 636c1c4 | 2016-01-05 09:26:54 -0800 | [diff] [blame^] | 6 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 7 | include $(CLEAR_VARS) |
| 8 | |
| 9 | LOCAL_SRC_FILES := \ |
Ying Wang | 6feb6d5 | 2014-04-17 10:03:35 -0700 | [diff] [blame] | 10 | acp.c |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 11 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 12 | LOCAL_STATIC_LIBRARIES := libhost |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 13 | LOCAL_MODULE := acp |
| 14 | LOCAL_ACP_UNAVAILABLE := true |
Dan Albert | b05f2ca | 2014-09-12 14:46:57 -0700 | [diff] [blame] | 15 | LOCAL_CXX_STL := none |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 16 | |
| 17 | include $(BUILD_HOST_EXECUTABLE) |