mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
20 lines
502 B
Makefile
20 lines
502 B
Makefile
include ../Makefile.tests_common
|
|
|
|
USEMODULE += gnrc_ipv6_router_default
|
|
USEMODULE += gnrc_sixlowpan_frag_minfwd
|
|
USEMODULE += gnrc_sixlowpan_iphc
|
|
USEMODULE += gnrc_ipv6_nib
|
|
USEMODULE += gnrc_netif
|
|
USEMODULE += embunit
|
|
USEMODULE += netdev_ieee802154
|
|
USEMODULE += netdev_test
|
|
|
|
CFLAGS += -DTEST_SUITES
|
|
|
|
include $(RIOTBASE)/Makefile.include
|
|
|
|
ifndef CONFIG_GNRC_IPV6_NIB_NO_RTR_SOL
|
|
# disable router solicitations so they don't interfere with the tests
|
|
CFLAGS += -DCONFIG_GNRC_IPV6_NIB_NO_RTR_SOL=1
|
|
endif
|