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
|
|
|
-include ./lvgl/lvgl.mk
|
2018-01-16 22:35:55 +01:00
|
|
|
|
2022-10-08 11:03:06 +02:00
|
|
|
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
|
|
|
|
2024-04-29 09:04:03 +02:00
|
|
|
LVGL_PATCHS ?= $(sort $(wildcard 000*.patch))
|
|
|
|
|
2024-02-09 06:18:23 +01:00
|
|
|
LVGL_VERSION = 9.1.0
|
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
|
2023-02-22 16:03:31 +01:00
|
|
|
UNPACK ?= unzip -o $(if $(V),,-q)
|
|
|
|
CURL ?= curl -L -O $(if $(V),,-Ss)
|
2019-04-08 14:57:42 +02:00
|
|
|
|
2018-01-16 22:35:55 +01:00
|
|
|
LVGL_UNPACKDIR = $(WD)/$(LVGL_UNPACKNAME)
|
|
|
|
|
|
|
|
$(LVGL_TARBALL):
|
2023-02-22 16:03:31 +01:00
|
|
|
$(ECHO_BEGIN)"Downloading: $(LVGL_TARBALL)"
|
|
|
|
$(Q) $(CURL) $(CONFIG_GRAPH_LVGL_URL)/$(LVGL_TARBALL)
|
|
|
|
$(ECHO_END)
|
2018-01-16 22:35:55 +01:00
|
|
|
|
|
|
|
$(LVGL_UNPACKNAME): $(LVGL_TARBALL)
|
2023-02-22 16:03:31 +01:00
|
|
|
$(ECHO_BEGIN)"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)
|
2024-04-29 09:04:03 +02:00
|
|
|
$(Q) cat $(LVGL_PATCHS) | patch -s -N -d $(LVGL_UNPACKNAME) -p1
|
2018-01-16 22:35:55 +01:00
|
|
|
$(Q) touch $(LVGL_UNPACKNAME)
|
2023-02-22 16:03:31 +01:00
|
|
|
$(ECHO_END)
|
2018-01-16 22:35:55 +01:00
|
|
|
|
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)
|
2024-04-30 08:22:14 +02:00
|
|
|
endif
|
|
|
|
|
|
|
|
include $(APPDIR)/Application.mk
|
2018-01-16 22:35:55 +01:00
|
|
|
|
2024-04-30 08:22:14 +02:00
|
|
|
ifeq ($(wildcard $(LVGL_UNPACKNAME)/.git),)
|
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
|