mirror of
https://github.com/54shady/kernel_drivers_examples.git
synced 2026-01-13 16:02:37 +00:00
22 lines
535 B
Makefile
22 lines
535 B
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
|
|
# uart_loop
|
|
include $(CLEAR_VARS)
|
|
LOCAL_SYSTEM_SHARED_LIBRARIES := libc
|
|
LOCAL_MODULE_PATH := $(TARGET_OUT_OPTIONAL_EXECUTABLES)
|
|
LOCAL_MODULE_TAGS := debug
|
|
LOCAL_SRC_FILES := uart_loop_test.c
|
|
LOCAL_MODULE := uart_loop
|
|
|
|
include $(BUILD_EXECUTABLE)
|
|
|
|
# record read write
|
|
include $(CLEAR_VARS)
|
|
LOCAL_SYSTEM_SHARED_LIBRARIES := libc
|
|
LOCAL_MODULE_PATH := $(TARGET_OUT_OPTIONAL_EXECUTABLES)
|
|
LOCAL_MODULE_TAGS := debug
|
|
LOCAL_SRC_FILES := uart_record_rw.c
|
|
LOCAL_MODULE := uart_record_rw
|
|
|
|
include $(BUILD_EXECUTABLE)
|