mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
34 lines
736 B
Makefile
34 lines
736 B
Makefile
include ../Makefile.net_common
|
|
|
|
USEMODULE += auto_init_gnrc_netif
|
|
USEMODULE += auto_init_gnrc_rpl
|
|
USEMODULE += gnrc_ipv6_router_default
|
|
USEMODULE += gnrc_icmpv6_echo
|
|
USEMODULE += gnrc_rpl
|
|
|
|
USEMODULE += shell
|
|
USEMODULE += shell_cmds_default
|
|
|
|
ifeq (native, $(BOARD))
|
|
USEMODULE += socket_zep
|
|
USEMODULE += socket_zep_hello
|
|
USEMODULE += netdev
|
|
TERMFLAGS += -z 127.0.0.1:17754 # Murdock has no IPv6 support
|
|
else
|
|
USEMODULE += netdev_default
|
|
# automated test only works on native
|
|
TESTS=
|
|
endif
|
|
|
|
.PHONY: host-tools
|
|
|
|
host-tools:
|
|
$(Q)env -u CC -u CFLAGS $(MAKE) -C $(RIOTTOOLS)
|
|
|
|
TERMDEPS += host-tools
|
|
|
|
include $(RIOTBASE)/Makefile.include
|
|
|
|
# Test is flaky and regularly derails unrelated merge trains
|
|
TEST_ON_CI_BLACKLIST += native
|