| Mike Lockwood | 308f31d | 2009-09-03 16:12:09 -0400 | [diff] [blame] | 1 | ifneq ($(TARGET_SIMULATOR),true) |
| 2 | |||||
| 3 | LOCAL_PATH:= $(call my-dir) | ||||
| 4 | include $(CLEAR_VARS) | ||||
| 5 | |||||
| 6 | LOCAL_SRC_FILES:= bugreport.c | ||||
| 7 | |||||
| 8 | LOCAL_MODULE:= bugreport | ||||
| 9 | |||||
| 10 | LOCAL_SHARED_LIBRARIES := libcutils | ||||
| 11 | |||||
| 12 | include $(BUILD_EXECUTABLE) | ||||
| 13 | |||||
| 14 | endif | ||||