7e55dbac33
commit a4a41b9023ef5b3a7c4a1cd82fb167fc63e706df Author: goldsimon <goldsimon@gmx.de> Date: Wed Sep 26 21:50:42 2012 +0200 - This also brings in LwIP's IPv6 codebase Signed-off-by: Tomas Hruby <tom@minix3.org>
45 lines
535 B
Makefile
45 lines
535 B
Makefile
.PATH: \
|
|
${.CURDIR}/core ${.CURDIR}/core/ipv4 ${.CURDIR}/core/ipv6 ${.CURDIR}/core/snmp
|
|
|
|
SRCS += \
|
|
def.c \
|
|
dns.c \
|
|
tcp_out.c \
|
|
timers.c \
|
|
mem.c \
|
|
init.c \
|
|
tcp.c \
|
|
raw.c \
|
|
dhcp.c \
|
|
sys.c \
|
|
udp.c \
|
|
tcp_in.c \
|
|
netif.c \
|
|
memp.c \
|
|
pbuf.c \
|
|
stats.c \
|
|
inet_chksum.c \
|
|
\
|
|
ip4.c \
|
|
igmp.c \
|
|
icmp.c \
|
|
ip4_addr.c \
|
|
ip_frag.c \
|
|
autoip.c \
|
|
\
|
|
dhcp6.c \
|
|
ethip6.c \
|
|
icmp6.c \
|
|
inet6.c \
|
|
ip6.c \
|
|
ip6_addr.c \
|
|
ip6_frag.c \
|
|
mld6.c \
|
|
nd6.c \
|
|
\
|
|
mib_structs.c \
|
|
mib2.c \
|
|
msg_out.c \
|
|
asn1_enc.c \
|
|
asn1_dec.c \
|
|
msg_in.c
|