1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/pkg/lv_drivers/Makefile
chrysn feff412bcc pkg: Move versions to dedicated line
Makefiles don't do comments, so these were forwarded into the variable.
*Most* users would expand the arguments to a shell where it'd be
ignored, but not all of them.

Contributes-To: https://github.com/RIOT-OS/RIOT/pull/18489

(This is also where the one version that is added here was removed).
2022-09-26 17:45:54 +02:00

17 lines
394 B
Makefile

PKG_NAME=lv_drivers
PKG_URL=https://github.com/lvgl/lv_drivers.git
# 8.2.0
PKG_VERSION=49c4b178494625efefb07891d1c8b9c13914edff
PKG_LICENSE=MIT
include $(RIOTBASE)/pkg/pkg.mk
LV_DRIVERS_MODULES := $(filter lv_drivers_%,$(USEMODULE))
.PHONY: lv_drivers_%
all: $(LV_DRIVERS_MODULES)
lv_drivers_%:
"$(MAKE)" -C $(PKG_SOURCE_DIR)/$* -f $(CURDIR)/Makefile.lv_drivers_module MODULE=$@ SRC=$*.c