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

20 lines
451 B
Makefile
Raw Normal View History

2023-08-29 18:43:32 +02:00
# PSA Crypto casts like hell, so this needs to shut the f up
CFLAGS += -Wno-cast-align
# include the PSA headers
INCLUDES += -I$(RIOTBASE)/sys/psa_crypto/include
ifneq (,$(filter psa_key_slot_mgmt,$(USEMODULE)))
DIRS += psa_key_slot_mgmt
endif
ifneq (,$(filter psa_persistent_storage,$(USEMODULE)))
DIRS += psa_persistent_storage
endif
2023-08-29 18:43:32 +02:00
ifneq (,$(filter psa_se_mgmt,$(USEMODULE)))
DIRS += psa_se_mgmt
endif
include $(RIOTBASE)/Makefile.base