11 lines
208 B
Makefile
11 lines
208 B
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES := uevents.c
|
|
|
|
LOCAL_SHARED_LIBRARIES += libcutils
|
|
LOCAL_MODULE:= uevents
|
|
|
|
LOCAL_CFLAGS := -Wno-unused-parameter
|
|
|
|
include $(BUILD_EXECUTABLE)
|