加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Makefile 1.30 KB
一键复制 编辑 原始数据 按行查看 历史
Neucrack 提交于 2018-09-27 16:50 . add ili9341 lvgl demo
LOCAL_MODULE_DEPENDS += init
LOCAL_MODULE_DEPENDS += libs
##################################################################################
# DO NOT EDIT THIS FILE IF YOU DON'T KNOW WHAT YOU DO
##################################################################################
PROJECT_PATH += demo/lvgl2
LOCAL_MODULE_DEPENDS += ${PROJECT_PATH}
CFG_FILE = ${SOFT_WORKDIR}/${PROJECT_PATH}/config.mk
IS_CFG_FILE_EXIST = $(shell if [ -f $(CFG_FILE) ]; then echo "exist"; else echo "notexist"; fi;)
ifeq "${strip ${IS_CFG_FILE_EXIST}}" "exist"
include ${CFG_FILE}
endif
include module_list.mk
#do not edit anything about the description above, if you don not know what you are doing
##################################################################################
#you can add you module here like the following comment
#LOCAL_MODULE_DEPENDS += project/module
#this comment will add a module name project/module in project/module path
##################################################################################
# Set this to any non-null string to signal a module which
# generates a binary (must contain a "main" entry point).
# If left null, only a library will be generated.
IS_ENTRY_POINT := yes
# Assembly / C source code
S_SRC :=
C_SRC :=
include ${SOFT_WORKDIR}/platform/compilation/cust_rules.mk
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化