mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
6 lines
224 B
Makefile
6 lines
224 B
Makefile
|
# Parse kconfig symbol `CONFIG_SKALD_ADV_CHANNELS` to an ordered list
|
||
|
ifdef CONFIG_SKALD_ADV_CHANNELS
|
||
|
SKALD_ADV_CHAN := { $(shell echo $(CONFIG_SKALD_ADV_CHANNELS)) }
|
||
|
CFLAGS += -DSKALD_ADV_CHAN="$(SKALD_ADV_CHAN)"
|
||
|
endif
|