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
|
|
|
#
|
|
|
|
# Copyright (C) 2018 Gregory Nutt. All rights reserved.
|
|
|
|
# Author: Gregory Nutt <gnutt@nuttx.org>
|
|
|
|
#
|
|
|
|
# Redistribution and use in source and binary forms, with or without
|
|
|
|
# modification, are permitted provided that the following conditions
|
|
|
|
# are met:
|
|
|
|
#
|
|
|
|
# 1. Redistributions of source code must retain the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer.
|
|
|
|
# 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer in
|
|
|
|
# the documentation and/or other materials provided with the
|
|
|
|
# distribution.
|
|
|
|
# 3. Neither the name NuttX nor the names of its contributors may be
|
|
|
|
# used to endorse or promote products derived from this software
|
|
|
|
# without specific prior written permission.
|
|
|
|
#
|
|
|
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
|
|
# FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
|
|
# COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
|
|
# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
|
|
|
# OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
|
|
|
# AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|
|
|
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
# POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
#
|
|
|
|
############################################################################
|
|
|
|
|
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
|
|
|
|
2020-11-29 15:34:56 +01:00
|
|
|
# Relax format check for LVGL to avoid errors on prinf() use
|
|
|
|
|
|
|
|
CFLAGS += -Wno-format
|
|
|
|
|
2018-01-16 22:35:55 +01:00
|
|
|
# LVGL Libraries
|
|
|
|
|
2020-04-15 11:50:35 +02:00
|
|
|
-include ./lvgl/src/lv_core/lv_core.mk
|
|
|
|
-include ./lvgl/src/lv_hal/lv_hal.mk
|
2020-06-16 17:24:56 +02:00
|
|
|
-include ./lvgl/src/lv_widgets/lv_widgets.mk
|
2020-04-15 11:50:35 +02:00
|
|
|
-include ./lvgl/src/lv_font/lv_font.mk
|
|
|
|
-include ./lvgl/src/lv_misc/lv_misc.mk
|
|
|
|
-include ./lvgl/src/lv_themes/lv_themes.mk
|
|
|
|
-include ./lvgl/src/lv_draw/lv_draw.mk
|
2020-06-16 17:24:56 +02:00
|
|
|
-include ./lvgl/src/lv_gpu/lv_gpu.mk
|
2018-01-16 22:35:55 +01:00
|
|
|
|
2020-10-29 23:46:52 +01:00
|
|
|
CSRCS += lv_tick_interface.c
|
|
|
|
|
2020-12-22 12:35:11 +01:00
|
|
|
ifneq ($(CONFIG_USE_LV_FILESYSTEM),)
|
|
|
|
CSRCS += lv_fs_interface.c
|
|
|
|
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
|
|
|
|
2020-06-16 17:24:56 +02:00
|
|
|
CONFIG_GRAPH_LVGL_URL ?= "https://github.com/lvgl/lvgl/archive"
|
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)
|
|
|
|
|
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))
|
|
|
|
|
2018-09-03 17:29:56 +02:00
|
|
|
include $(APPDIR)/Application.mk
|