11 lines
173 B
Makefile
11 lines
173 B
Makefile
|
LOCAL_PATH:= $(call my-dir)
|
||
|
include $(CLEAR_VARS)
|
||
|
|
||
|
LOCAL_SRC_FILES:= bugreport.c
|
||
|
|
||
|
LOCAL_MODULE:= bugreport
|
||
|
|
||
|
LOCAL_SHARED_LIBRARIES := libcutils
|
||
|
|
||
|
include $(BUILD_EXECUTABLE)
|