mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
28 lines
854 B
Makefile
28 lines
854 B
Makefile
INCLUDES += -I$(RIOTBASE)/pkg/lwip/include \
|
|
-I$(BINDIRBASE)/pkg/$(BOARD)/lwip/src/include
|
|
|
|
ifneq (,$(filter lwip_conn,$(USEMODULE)))
|
|
DIRS += $(RIOTBASE)/pkg/lwip/contrib/conn
|
|
endif
|
|
ifneq (,$(filter lwip_conn_ip,$(USEMODULE)))
|
|
DIRS += $(RIOTBASE)/pkg/lwip/contrib/conn/ip
|
|
endif
|
|
ifneq (,$(filter lwip_conn_udp,$(USEMODULE)))
|
|
DIRS += $(RIOTBASE)/pkg/lwip/contrib/conn/udp
|
|
endif
|
|
ifneq (,$(filter lwip_contrib,$(USEMODULE)))
|
|
DIRS += $(RIOTBASE)/pkg/lwip/contrib
|
|
endif
|
|
ifneq (,$(filter lwip_netdev2,$(USEMODULE)))
|
|
DIRS += $(RIOTBASE)/pkg/lwip/contrib/netdev2
|
|
endif
|
|
ifneq (,$(filter lwip_sock,$(USEMODULE)))
|
|
ifneq (,$(filter lwip_ipv6,$(USEMODULE)))
|
|
CFLAGS += -DSOCK_HAS_IPV6
|
|
endif
|
|
DIRS += $(RIOTBASE)/pkg/lwip/contrib/sock
|
|
endif
|
|
ifneq (,$(filter lwip_sock_ip,$(USEMODULE)))
|
|
DIRS += $(RIOTBASE)/pkg/lwip/contrib/sock/ip
|
|
endif
|