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 | |
Christopher Wiley | 676799f | 2015-12-30 12:24:40 -0800 | [diff] [blame] | 7 | LOCAL_CFLAGS := -Werror -Wall |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 8 | |
| 9 | LOCAL_MODULE:= libhost |
Dan Willemsen | 859ac34 | 2015-08-14 12:59:06 -0700 | [diff] [blame] | 10 | LOCAL_MODULE_HOST_OS := darwin linux windows |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 11 | LOCAL_C_INCLUDES := $(LOCAL_PATH)/include |
Elliott Hughes | 636c1c4 | 2016-01-05 09:26:54 -0800 | [diff] [blame] | 12 | LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH)/include |
Dan Albert | 944fc40 | 2015-06-16 14:14:43 -0700 | [diff] [blame] | 13 | LOCAL_CXX_STL := none |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 14 | |
| 15 | # acp uses libhost, so we can't use |
| 16 | # acp to install libhost. |
| 17 | LOCAL_ACP_UNAVAILABLE:= true |
| 18 | |
| 19 | include $(BUILD_HOST_STATIC_LIBRARY) |
| 20 | |
Ying Wang | c7a10dd | 2012-01-06 11:59:30 -0800 | [diff] [blame] | 21 | # Include toolchain prebuilt modules if they exist. |
| 22 | -include $(TARGET_TOOLCHAIN_ROOT)/toolchain.mk |