genode/libports/lib/mk/lwip.mk

48 lines
1.2 KiB
Makefile
Raw Normal View History

2011-12-22 16:19:25 +01:00
#
# lwIP TCP/IP library
#
# The library implementes TCP and UDP as well as DNS and DHCP.
#
include $(REP_DIR)/ports/lwip.inc
LWIP_DIR = $(REP_DIR)/contrib/$(LWIP)
2011-12-22 16:19:25 +01:00
# Genode platform files
SRC_CC = nic.cc printf.cc sys_arch.cc
# Core files
SRC_C = init.c mem.c memp.c netif.c pbuf.c stats.c udp.c raw.c sys.c \
tcp.c tcp_in.c tcp_out.c dhcp.c dns.c timers.c def.c
2011-12-22 16:19:25 +01:00
# IPv4 files
SRC_C += icmp.c inet.c ip_addr.c ip.c ip_frag.c inet_chksum.c
# API files
SRC_C += err.c api_lib.c api_msg.c netbuf.c netdb.c netifapi.c sockets.c \
tcpip.c
# Network interface files
SRC_C += etharp.c
2011-12-22 16:19:25 +01:00
LIBS = thread cxx alarm signal libc timed_semaphore
D_OPTS = ERRNO SO_REUSE LWIP_SO_RCVBUF RECV_BUFSIZE_DEFAULT=8192
2011-12-22 16:19:25 +01:00
D_OPTS := $(addprefix -D,$(D_OPTS))
CC_DEF += $(D_OPTS)
INC_DIR += $(REP_DIR)/include/lwip \
$(LWIP_DIR)/src/include \
$(LWIP_DIR)/src/include/ipv4 \
$(LWIP_DIR)/src/include/api \
$(LWIP_DIR)/src/include/netif \
$(REP_DIR)/src/lib/lwip/include
vpath %.cc $(REP_DIR)/src/lib/lwip/platform
vpath %.c $(LWIP_DIR)/src/core
vpath %.c $(LWIP_DIR)/src/core/ipv4
vpath %.c $(LWIP_DIR)/src/api
vpath %.c $(LWIP_DIR)/src/netif
SHARED_LIB = yes