1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/pkg/libcose/Makefile.include

13 lines
327 B
Makefile
Raw Normal View History

2018-04-16 19:01:27 +02:00
INCLUDES += -I$(PKGDIRBASE)/libcose/include
CFLAGS += -DUSE_CBOR_CONTEXT
ifneq (,$(filter libcose_crypt_hacl,$(USEMODULE)))
CFLAGS += -DCRYPTO_HACL
endif
2019-08-12 14:23:10 +02:00
ifneq (,$(filter libcose_crypt_c25519,$(USEMODULE)))
CFLAGS += -DCRYPTO_C25519
endif
2018-04-16 19:01:27 +02:00
# Declare pseudomodules here to be selfcontained
PSEUDOMODULES += libcose_crypt_%