1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00
RIOT/sys/net/routing/rpl/Makefile

8 lines
198 B
Makefile
Raw Normal View History

MODE = $(shell grep "RPL_DEFAULT_MOP RPL_NON_STORING_MODE" ../../include/rpl/rpl_config.h)
ifneq (,$(MODE))
DIRS += rpl_nonstoring
else
DIRS += rpl_storing
endif
2013-03-16 17:02:35 +01:00
include $(RIOTBASE)/Makefile.base