The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1 | LOCAL_PATH:= $(call my-dir) |
| 2 | include $(CLEAR_VARS) |
| 3 | |
| 4 | LOCAL_SRC_FILES:= \ |
Ying Wang | 6feb6d5 | 2014-04-17 10:03:35 -0700 | [diff] [blame] | 5 | CopyFile.c |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6 | |
Dan Willemsen | 7a54985 | 2015-08-13 17:51:40 -0700 | [diff] [blame] | 7 | LOCAL_CFLAGS_darwin += -DMACOSX_RSRC |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 8 | |
| 9 | LOCAL_MODULE:= libhost |
| 10 | LOCAL_C_INCLUDES := $(LOCAL_PATH)/include |
Dan Albert | 944fc40 | 2015-06-16 14:14:43 -0700 | [diff] [blame] | 11 | LOCAL_CXX_STL := none |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 12 | |
| 13 | # acp uses libhost, so we can't use |
| 14 | # acp to install libhost. |
| 15 | LOCAL_ACP_UNAVAILABLE:= true |
| 16 | |
| 17 | include $(BUILD_HOST_STATIC_LIBRARY) |
| 18 | |
Ying Wang | c7a10dd | 2012-01-06 11:59:30 -0800 | [diff] [blame] | 19 | # Include toolchain prebuilt modules if they exist. |
| 20 | -include $(TARGET_TOOLCHAIN_ROOT)/toolchain.mk |