| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 1 | # Copyright 2005 The Android Open Source Project | 
|  | 2 |  | 
|  | 3 | ifeq ($(TARGET_ARCH),arm) | 
|  | 4 |  | 
|  | 5 | LOCAL_PATH:= $(call my-dir) | 
|  | 6 | include $(CLEAR_VARS) | 
|  | 7 |  | 
|  | 8 | LOCAL_SRC_FILES:= debuggerd.c getevent.c unwind-arm.c pr-support.c utility.c | 
|  | 9 | LOCAL_CFLAGS := -Wall | 
|  | 10 | LOCAL_MODULE := debuggerd | 
|  | 11 |  | 
|  | 12 | LOCAL_STATIC_LIBRARIES := libcutils libc | 
|  | 13 |  | 
|  | 14 | include $(BUILD_EXECUTABLE) | 
|  | 15 |  | 
|  | 16 | include $(CLEAR_VARS) | 
|  | 17 | LOCAL_SRC_FILES := crasher.c | 
|  | 18 | LOCAL_SRC_FILES += crashglue.S | 
|  | 19 | LOCAL_MODULE := crasher | 
|  | 20 | LOCAL_MODULE_PATH := $(TARGET_OUT_OPTIONAL_EXECUTABLES) | 
|  | 21 | LOCAL_MODULE_TAGS := eng | 
|  | 22 | #LOCAL_FORCE_STATIC_EXECUTABLE := true | 
|  | 23 | LOCAL_SHARED_LIBRARIES := libcutils libc | 
|  | 24 | include $(BUILD_EXECUTABLE) | 
|  | 25 |  | 
|  | 26 | endif # TARGET_ARCH == arm |