19 lines
388 B
Makefile
19 lines
388 B
Makefile
# Copyright 2006-2014 The Android Open Source Project
|
|
|
|
LOCAL_PATH:= $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
ifneq ($(filter userdebug eng,$(TARGET_BUILD_VARIANT)),)
|
|
LOCAL_CFLAGS += -DUSERDEBUG_BUILD=1
|
|
endif
|
|
|
|
LOCAL_SRC_FILES:= logcat.cpp event.logtags
|
|
|
|
LOCAL_SHARED_LIBRARIES := liblog
|
|
|
|
LOCAL_MODULE:= logcat
|
|
|
|
include $(BUILD_EXECUTABLE)
|
|
|
|
include $(call first-makefiles-under,$(LOCAL_PATH))
|