22 lines
595 B
Makefile
22 lines
595 B
Makefile
# Copyright 2005 The Android Open Source Project
|
|
|
|
LOCAL_PATH:= $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES:= debuggerd.c getevent.c unwind-arm.c pr-support.c utility.c
|
|
LOCAL_CFLAGS := -Wall
|
|
LOCAL_MODULE := debuggerd
|
|
|
|
LOCAL_STATIC_LIBRARIES := libcutils libc
|
|
|
|
include $(BUILD_EXECUTABLE)
|
|
|
|
include $(CLEAR_VARS)
|
|
LOCAL_SRC_FILES := crasher.c
|
|
LOCAL_SRC_FILES += crashglue.S
|
|
LOCAL_MODULE := crasher
|
|
LOCAL_MODULE_PATH := $(TARGET_OUT_OPTIONAL_EXECUTABLES)
|
|
LOCAL_MODULE_TAGS := eng
|
|
#LOCAL_FORCE_STATIC_EXECUTABLE := true
|
|
LOCAL_SHARED_LIBRARIES := libcutils libc
|
|
include $(BUILD_EXECUTABLE)
|