1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/cpu/esp32/vendor/esp-idf/wpa_supplicant/Makefile

22 lines
512 B
Makefile
Raw Normal View History

ifneq (,$(filter esp_idf_wpa_supplicant_port,$(USEMODULE)))
2018-10-08 12:20:49 +02:00
DIRS += port
endif
ifneq (,$(filter esp_idf_wpa_supplicant_crypto,$(USEMODULE)))
2018-10-08 12:20:49 +02:00
DIRS += src/crypto
endif
ifneq (,$(filter esp_idf_wpa_supplicant_wpa2_eap_peer,$(USEMODULE)))
DIRS += src/wpa2/eap_peer
endif
ifneq (,$(filter esp_idf_wpa_supplicant_wpa2_tls,$(USEMODULE)))
DIRS += src/wpa2/tls
endif
ifneq (,$(filter esp_idf_wpa_supplicant_wpa2_utils,$(USEMODULE)))
DIRS += src/wpa2/utils
endif
2018-10-08 12:20:49 +02:00
include $(RIOTBASE)/Makefile.base