The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame^] | 1 | # Copyright 2005 The Android Open Source Project |
| 2 | |
| 3 | LOCAL_PATH:= $(call my-dir) |
| 4 | include $(CLEAR_VARS) |
| 5 | |
| 6 | LOCAL_SRC_FILES:= debuggerd.c getevent.c unwind-arm.c pr-support.c utility.c |
| 7 | LOCAL_CFLAGS := -Wall |
| 8 | LOCAL_MODULE := debuggerd |
| 9 | |
| 10 | LOCAL_STATIC_LIBRARIES := libcutils libc |
| 11 | |
| 12 | include $(BUILD_EXECUTABLE) |
| 13 | |
| 14 | include $(CLEAR_VARS) |
| 15 | LOCAL_SRC_FILES := crasher.c |
| 16 | LOCAL_SRC_FILES += crashglue.S |
| 17 | LOCAL_MODULE := crasher |
| 18 | LOCAL_MODULE_PATH := $(TARGET_OUT_OPTIONAL_EXECUTABLES) |
| 19 | LOCAL_MODULE_TAGS := eng |
| 20 | #LOCAL_FORCE_STATIC_EXECUTABLE := true |
| 21 | LOCAL_SHARED_LIBRARIES := libcutils libc |
| 22 | include $(BUILD_EXECUTABLE) |