2018-01-16 22:35:55 +01:00
|
|
|
############################################################################
|
2020-06-16 17:24:56 +02:00
|
|
|
# apps/graphics/lvgl/Makefile
|
2018-01-16 22:35:55 +01:00
|
|
|
#
|
2021-06-07 17:31:08 +02:00
|
|
|
# Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
# contributor license agreements. See the NOTICE file distributed with
|
|
|
|
# this work for additional information regarding copyright ownership. The
|
|
|
|
# ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
|
|
# "License"); you may not use this file except in compliance with the
|
|
|
|
# License. You may obtain a copy of the License at
|
2018-01-16 22:35:55 +01:00
|
|
|
#
|
2021-06-07 17:31:08 +02:00
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
2018-01-16 22:35:55 +01:00
|
|
|
#
|
2021-06-07 17:31:08 +02:00
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
# License for the specific language governing permissions and limitations
|
|
|
|
# under the License.
|
2018-01-16 22:35:55 +01:00
|
|
|
#
|
|
|
|
############################################################################
|
|
|
|
|
2020-05-20 06:35:03 +02:00
|
|
|
include $(APPDIR)/Make.defs
|
2018-01-16 22:35:55 +01:00
|
|
|
|
|
|
|
# LVGL graphic library
|
|
|
|
|
2019-04-08 14:57:42 +02:00
|
|
|
LVGL_DIR = .
|
2020-06-16 17:24:56 +02:00
|
|
|
LVGL_DIR_NAME = lvgl
|
2019-04-08 14:57:42 +02:00
|
|
|
|
2022-10-08 11:03:06 +02:00
|
|
|
# Relax LVGL's format checking and unused variable checking to avoid errors
|
2020-11-29 15:34:56 +01:00
|
|
|
|
2022-10-08 11:03:06 +02:00
|
|
|
CFLAGS += -Wno-format -Wno-unused-variable
|
2020-11-29 15:34:56 +01:00
|
|
|
|
2022-10-08 11:03:06 +02:00
|
|
|
-include ./lvgl/lvgl.mk
|
2018-01-16 22:35:55 +01:00
|
|
|
|
2022-10-08 11:03:06 +02:00
|
|
|
CSRCS += port/lv_port.c
|
|
|
|
CSRCS += port/lv_port_tick.c
|
2018-01-16 22:35:55 +01:00
|
|
|
|
2020-10-29 23:46:52 +01:00
|
|
|
|
2022-10-08 11:03:06 +02:00
|
|
|
ifeq ($(CONFIG_LV_PORT_USE_LCDDEV),y)
|
|
|
|
CSRCS += port/lv_port_lcddev.c
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(CONFIG_LV_PORT_USE_FBDEV),y)
|
|
|
|
CSRCS += port/lv_port_fbdev.c
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(CONFIG_LV_PORT_USE_TOUCHPAD),y)
|
|
|
|
CSRCS += port/lv_port_touchpad.c
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(CONFIG_LV_PORT_USE_BUTTON),y)
|
|
|
|
CSRCS += port/lv_port_button.c
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(CONFIG_LV_PORT_USE_KEYPAD),y)
|
|
|
|
CSRCS += port/lv_port_keypad.c
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(CONFIG_LV_PORT_USE_ENCODER),y)
|
|
|
|
CSRCS += port/lv_port_encoder.c
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(CONFIG_LV_USE_LOG),y)
|
|
|
|
CSRCS += port/lv_port_syslog.c
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifneq ($(CONFIG_LV_PORT_MEM_ATTRIBUTE_FAST_MEM_SECTION_NAME), "")
|
|
|
|
CFLAGS += "-DLV_ATTRIBUTE_FAST_MEM=locate_data(CONFIG_LV_PORT_MEM_ATTRIBUTE_FAST_MEM_SECTION_NAME)"
|
|
|
|
CXXFLAGS += "-DLV_ATTRIBUTE_FAST_MEM=locate_data(CONFIG_LV_PORT_MEM_ATTRIBUTE_FAST_MEM_SECTION_NAME)"
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(CONFIG_LV_MEM_CUSTOM),y)
|
|
|
|
ifneq ($(CONFIG_LV_PORT_MEM_CUSTOM_SIZE), 0)
|
|
|
|
CFLAGS += "-DLV_MEM_CUSTOM_ALLOC=lv_port_mem_alloc"
|
|
|
|
CFLAGS += "-DLV_MEM_CUSTOM_FREE=lv_port_mem_free"
|
|
|
|
CFLAGS += "-DLV_MEM_CUSTOM_REALLOC=lv_port_mem_realloc"
|
|
|
|
CSRCS += port/lv_port_mem.c
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifneq ($(CONFIG_LV_ASSERT_HANDLER_INCLUDE), "")
|
|
|
|
CFLAGS += "-DLV_ASSERT_HANDLER=ASSERT(0);"
|
2020-12-22 12:35:11 +01:00
|
|
|
endif
|
|
|
|
|
2018-01-16 22:35:55 +01:00
|
|
|
# Set up build configuration and environment
|
|
|
|
|
2019-10-02 15:06:50 +02:00
|
|
|
WD := ${shell echo $(CURDIR) | sed -e 's/ /\\ /g'}
|
2018-01-16 22:35:55 +01:00
|
|
|
|
2022-10-08 11:03:06 +02:00
|
|
|
CONFIG_GRAPH_LVGL_URL ?= "https://github.com/lvgl/lvgl/archive/refs/tags"
|
2018-01-16 22:35:55 +01:00
|
|
|
|
2020-08-14 14:31:51 +02:00
|
|
|
LVGL_VERSION = $(patsubst "%",%,$(strip $(CONFIG_LVGL_VERSION)))
|
2020-04-14 13:52:14 +02:00
|
|
|
LVGL_TARBALL = v$(LVGL_VERSION).zip
|
2018-01-16 22:35:55 +01:00
|
|
|
|
|
|
|
LVGL_UNPACKNAME = lvgl
|
2019-04-08 14:57:42 +02:00
|
|
|
UNPACK ?= unzip -o
|
|
|
|
|
2018-01-16 22:35:55 +01:00
|
|
|
LVGL_UNPACKDIR = $(WD)/$(LVGL_UNPACKNAME)
|
|
|
|
|
|
|
|
$(LVGL_TARBALL):
|
2021-06-01 15:00:44 +02:00
|
|
|
$(Q) echo "Downloading: $(LVGL_TARBALL)"
|
2020-12-21 12:48:58 +01:00
|
|
|
$(Q) curl -O -L $(CONFIG_GRAPH_LVGL_URL)/$(LVGL_TARBALL)
|
2018-01-16 22:35:55 +01:00
|
|
|
|
|
|
|
$(LVGL_UNPACKNAME): $(LVGL_TARBALL)
|
2021-06-01 15:00:44 +02:00
|
|
|
$(Q) echo "Unpacking: $(LVGL_TARBALL) -> $(LVGL_UNPACKNAME)"
|
2018-01-16 22:35:55 +01:00
|
|
|
$(Q) $(UNPACK) $(LVGL_TARBALL)
|
2020-04-14 13:52:14 +02:00
|
|
|
$(Q) mv lvgl-$(LVGL_VERSION) $(LVGL_UNPACKNAME)
|
2018-01-16 22:35:55 +01:00
|
|
|
$(Q) touch $(LVGL_UNPACKNAME)
|
|
|
|
|
2022-08-27 08:15:16 +02:00
|
|
|
# Download and unpack tarball if no git repo found
|
|
|
|
ifeq ($(wildcard $(LVGL_UNPACKNAME)/.git),)
|
2020-07-15 14:33:00 +02:00
|
|
|
context:: $(LVGL_UNPACKNAME)
|
2018-01-16 22:35:55 +01:00
|
|
|
|
2018-09-03 17:29:56 +02:00
|
|
|
distclean::
|
2018-01-16 22:35:55 +01:00
|
|
|
$(call DELDIR, $(LVGL_UNPACKNAME))
|
|
|
|
$(call DELFILE, $(LVGL_TARBALL))
|
2022-08-27 08:15:16 +02:00
|
|
|
endif
|
2018-01-16 22:35:55 +01:00
|
|
|
|
2018-09-03 17:29:56 +02:00
|
|
|
include $(APPDIR)/Application.mk
|