mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-18 12:52:44 +01:00
34 lines
1.0 KiB
Makefile
34 lines
1.0 KiB
Makefile
INCLUDES += -I$(RIOTBASE)/pkg/lwip/include \
|
|
-I$(PKGDIRBASE)/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
|
|
ifneq (,$(filter lwip_sock_tcp,$(USEMODULE)))
|
|
DIRS += $(RIOTBASE)/pkg/lwip/contrib/sock/tcp
|
|
endif
|
|
ifneq (,$(filter lwip_sock_udp,$(USEMODULE)))
|
|
DIRS += $(RIOTBASE)/pkg/lwip/contrib/sock/udp
|
|
endif
|