Home | History | Annotate | Download | only in logcat
      1 # Copyright 2006-2014 The Android Open Source Project
      2 
      3 LOCAL_PATH:= $(call my-dir)
      4 include $(CLEAR_VARS)
      5 
      6 LOCAL_SRC_FILES:= logcat.cpp event.logtags
      7 
      8 LOCAL_SHARED_LIBRARIES := liblog
      9 
     10 LOCAL_MODULE := logcat
     11 
     12 LOCAL_CFLAGS := -Werror
     13 
     14 include $(BUILD_EXECUTABLE)
     15 
     16 include $(call first-makefiles-under,$(LOCAL_PATH))
     17