mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
18 lines
513 B
Makefile
18 lines
513 B
Makefile
CFLAGS += -DWOLFSSL_USER_SETTINGS=1
|
|
CFLAGS += -DWOLFSSL_RIOT_OS=1
|
|
|
|
INCLUDES += -I$(APPDIR)
|
|
INCLUDES += -I$(PKGDIRBASE)/wolfssl
|
|
INCLUDES += -I$(RIOTBASE)/pkg/wolfssl/sock_tls
|
|
INCLUDES += -I$(RIOTBASE)/pkg/wolfssl/include
|
|
|
|
ifneq (,$(filter sock_tls,$(USEMODULE)))
|
|
DIRS += $(RIOTBASE)/pkg/wolfssl/sock_tls
|
|
endif
|
|
|
|
# wolfcrypt implements different options using pseudomodules
|
|
PSEUDOMODULES += wolfcrypt_%
|
|
|
|
# wolfssl implements different options using pseudomodules (ocsp, dtls, crl, etc.)
|
|
PSEUDOMODULES += wolfssl_%
|