1ifneq ($(TARGET_SIMULATOR),true) 2 3LOCAL_PATH:= $(call my-dir) 4include $(CLEAR_VARS) 5 6LOCAL_SRC_FILES:= bugreport.c 7 8LOCAL_MODULE:= bugreport 9 10LOCAL_SHARED_LIBRARIES := libcutils 11 12include $(BUILD_EXECUTABLE) 13 14endif 15