mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
feff412bcc
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).
16 lines
350 B
Makefile
16 lines
350 B
Makefile
PKG_NAME=elk
|
|
PKG_URL=https://github.com/cesanta/elk
|
|
# 2.1.0
|
|
PKG_VERSION=1eab37bd9041d93a0bdfcd4335b2dcdba1076c67
|
|
PKG_LICENSE=GPLv2
|
|
|
|
include $(RIOTBASE)/pkg/pkg.mk
|
|
|
|
CFLAGS += -Wno-cast-align
|
|
CFLAGS += -Wno-format-nonliteral
|
|
CFLAGS += -Wno-pedantic
|
|
CFLAGS += -Wno-unused-parameter
|
|
|
|
all:
|
|
$(QQ)"$(MAKE)" -C $(PKG_SOURCE_DIR) -f $(CURDIR)/$(PKG_NAME).mk
|