mirror of
https://github.com/54shady/kernel_drivers_examples.git
synced 2026-01-13 16:02:37 +00:00
15 lines
348 B
Makefile
15 lines
348 B
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
ifeq (1,$(strip $(shell expr $(PLATFORM_VERSION) \>= 5.0)))
|
|
LOCAL_CFLAGS += -DMMAP64
|
|
endif
|
|
|
|
LOCAL_SYSTEM_SHARED_LIBRARIES := libc
|
|
LOCAL_MODULE_PATH := $(TARGET_OUT_OPTIONAL_EXECUTABLES)
|
|
LOCAL_MODULE_TAGS := debug
|
|
LOCAL_SRC_FILES := lcd_test.c
|
|
LOCAL_MODULE := lcd_test
|
|
|
|
include $(BUILD_EXECUTABLE)
|