1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/tests/lwip_sock_ip/Makefile
Benjamin Valentin eb45c729da tests/lwip_sock_*: drop LWIP_SO_RCVTIMEO
This is now set automatically
2022-03-09 22:07:22 +01:00

36 lines
631 B
Makefile

include ../Makefile.tests_common
LWIP_IPV4 ?= 0
LWIP_IPV6 ?= 1
AUX_LOCAL ?= 1
ifneq (0, $(LWIP_IPV4))
USEMODULE += ipv4_addr
USEMODULE += lwip_arp
USEMODULE += lwip_ipv4
CFLAGS += -DETHARP_SUPPORT_STATIC_ENTRIES=1
endif
ifneq (0, $(LWIP_IPV6))
USEMODULE += ipv6_addr
USEMODULE += lwip_ipv6_autoconfig
endif
ifeq (1, $(AUX_LOCAL))
USEMODULE += sock_aux_local
endif
USEMODULE += inet_csum
USEMODULE += l2util
USEMODULE += lwip_netdev
USEMODULE += netdev_eth
USEMODULE += netdev_test
USEMODULE += ps
USEMODULE += sock_ip
DISABLE_MODULE += auto_init_lwip
CFLAGS += -DSO_REUSE
include $(RIOTBASE)/Makefile.include