mirror of
https://github.com/54shady/kernel_drivers_examples.git
synced 2026-01-13 16:02:37 +00:00
11 lines
260 B
Makefile
11 lines
260 B
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SYSTEM_SHARED_LIBRARIES := libc
|
|
LOCAL_MODULE_PATH := $(TARGET_OUT_OPTIONAL_EXECUTABLES)
|
|
LOCAL_MODULE_TAGS := debug
|
|
LOCAL_SRC_FILES := demo1_user.c
|
|
LOCAL_MODULE := demo1_user
|
|
|
|
include $(BUILD_EXECUTABLE)
|