mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-20 14:13:09 +00:00
46 lines
1.1 KiB
Makefile
46 lines
1.1 KiB
Makefile
#
|
|
# lwIP TCP/IP library
|
|
#
|
|
# The library implementes TCP and UDP as well as DNS and DHCP.
|
|
#
|
|
|
|
LWIP_DIR = $(REP_DIR)/contrib/lwip-1.3.2
|
|
|
|
# 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
|
|
|
|
# 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 loopif.c
|
|
|
|
LIBS = thread cxx alarm signal libc timed_semaphore
|
|
|
|
D_OPTS = ERRNO
|
|
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
|