mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
22 lines
555 B
Makefile
22 lines
555 B
Makefile
DEVELHELP = 0
|
|
|
|
include ../Makefile.net_common
|
|
|
|
USEMODULE += embunit
|
|
USEMODULE += l2util
|
|
|
|
# defining the "module" path defines this way in the hopes to make it more
|
|
#clearer.
|
|
CHECKED_IFDEF_PATHS = cc110x \
|
|
esp_now \
|
|
netdev_eth \
|
|
netdev_ieee802154 \
|
|
xbee \
|
|
nrfmin \
|
|
nimble_netif
|
|
|
|
CFLAGS += $(foreach path,$(CHECKED_IFDEF_PATHS),\
|
|
-DMODULE_$(shell echo $(path) | tr a-z A-Z))
|
|
|
|
include $(RIOTBASE)/Makefile.include
|