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
464 B
Makefile
16 lines
464 B
Makefile
PKG_NAME=monocypher
|
|
PKG_URL=https://github.com/LoupVaillant/Monocypher
|
|
# v3.1.2
|
|
PKG_VERSION=baca5d31259c598540e4d1284bc8d8f793abf83a
|
|
PKG_LICENSE=CC-0
|
|
|
|
include $(RIOTBASE)/pkg/pkg.mk
|
|
|
|
CFLAGS += -DBLAKE2_NO_UNROLLING
|
|
|
|
all: $(filter monocypher_optional,$(USEMODULE))
|
|
$(QQ)"$(MAKE)" -C $(PKG_SOURCE_DIR)/src -f $(RIOTBASE)/Makefile.base MODULE=$(PKG_NAME)
|
|
|
|
monocypher_optional:
|
|
$(QQ)"$(MAKE)" -C $(PKG_SOURCE_DIR)/src/optional -f $(RIOTBASE)/Makefile.base MODULE=$@
|