1 | # $Id: Config.kmk 96407 2022-08-22 17:43:14Z vboxsync $
|
---|
2 | ## @file
|
---|
3 | # Define the include dirs and source files for LWIP pre-1.5.0.
|
---|
4 | #
|
---|
5 | # This file is included by Devices/Makefile.kmk and NetworkServices/NAT/Makefile.kmk.
|
---|
6 | #
|
---|
7 |
|
---|
8 | #
|
---|
9 | # Copyright (C) 2006-2022 Oracle and/or its affiliates.
|
---|
10 | #
|
---|
11 | # This file is part of VirtualBox base platform packages, as
|
---|
12 | # available from https://www.virtualbox.org.
|
---|
13 | #
|
---|
14 | # This program is free software; you can redistribute it and/or
|
---|
15 | # modify it under the terms of the GNU General Public License
|
---|
16 | # as published by the Free Software Foundation, in version 3 of the
|
---|
17 | # License.
|
---|
18 | #
|
---|
19 | # This program is distributed in the hope that it will be useful, but
|
---|
20 | # WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
21 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
---|
22 | # General Public License for more details.
|
---|
23 | #
|
---|
24 | # You should have received a copy of the GNU General Public License
|
---|
25 | # along with this program; if not, see <https://www.gnu.org/licenses>.
|
---|
26 | #
|
---|
27 | # SPDX-License-Identifier: GPL-3.0-only
|
---|
28 | #
|
---|
29 |
|
---|
30 | LWIP_INCS += \
|
---|
31 | src/include \
|
---|
32 | src/include/ipv4 \
|
---|
33 | src/include/ipv6 \
|
---|
34 | vbox/include \
|
---|
35 | vbox
|
---|
36 |
|
---|
37 | LWIP_SOURCES += \
|
---|
38 | src/api/api_lib.c \
|
---|
39 | src/api/api_msg.c \
|
---|
40 | src/api/err.c \
|
---|
41 | src/api/netbuf.c \
|
---|
42 | src/api/netdb.c \
|
---|
43 | src/api/netifapi.c \
|
---|
44 | src/api/sockets.c \
|
---|
45 | src/api/tcpip.c \
|
---|
46 | src/core/def.c \
|
---|
47 | src/core/dhcp.c \
|
---|
48 | src/core/dns.c \
|
---|
49 | src/core/inet_chksum.c \
|
---|
50 | src/core/init.c \
|
---|
51 | src/core/ipv4/autoip.c \
|
---|
52 | src/core/ipv4/icmp.c \
|
---|
53 | src/core/ipv4/igmp.c \
|
---|
54 | src/core/ipv4/ip4.c \
|
---|
55 | src/core/ipv4/ip4_addr.c \
|
---|
56 | src/core/ipv4/ip_frag.c \
|
---|
57 | src/core/ipv6/dhcp6.c \
|
---|
58 | src/core/ipv6/ethip6.c \
|
---|
59 | src/core/ipv6/icmp6.c \
|
---|
60 | src/core/ipv6/inet6.c \
|
---|
61 | src/core/ipv6/ip6.c \
|
---|
62 | src/core/ipv6/ip6_addr.c \
|
---|
63 | src/core/ipv6/ip6_frag.c \
|
---|
64 | src/core/ipv6/mld6.c \
|
---|
65 | src/core/ipv6/nd6.c \
|
---|
66 | src/core/mem.c \
|
---|
67 | src/core/memp.c \
|
---|
68 | src/core/netif.c \
|
---|
69 | src/core/pbuf.c \
|
---|
70 | src/core/raw.c \
|
---|
71 | src/core/stats.c \
|
---|
72 | src/core/sys.c \
|
---|
73 | src/core/tcp.c \
|
---|
74 | src/core/tcp_in.c \
|
---|
75 | src/core/tcp_out.c \
|
---|
76 | src/core/timers.c \
|
---|
77 | src/core/udp.c \
|
---|
78 | src/netif/etharp.c \
|
---|
79 | vbox/sys_arch.c \
|
---|
80 | vbox/VBoxLwipCore.cpp
|
---|
81 |
|
---|
82 | # LWIP_SOURCES += \
|
---|
83 | # src/core/snmp/asn1_dec.c \
|
---|
84 | # src/core/snmp/asn1_enc.c \
|
---|
85 | # src/core/snmp/mib2.c \
|
---|
86 | # src/core/snmp/mib_structs.c \
|
---|
87 | # src/core/snmp/msg_in.c \
|
---|
88 | # src/core/snmp/msg_out.c \
|
---|
89 |
|
---|
90 | # LWIP_SOURCES += \
|
---|
91 | # src/netif/slipif.c \
|
---|
92 |
|
---|
93 | # LWIP_SOURCES += \
|
---|
94 | # src/netif/ppp/auth.c \
|
---|
95 | # src/netif/ppp/chap.c \
|
---|
96 | # src/netif/ppp/chpms.c \
|
---|
97 | # src/netif/ppp/fsm.c \
|
---|
98 | # src/netif/ppp/ipcp.c \
|
---|
99 | # src/netif/ppp/lcp.c \
|
---|
100 | # src/netif/ppp/magic.c \
|
---|
101 | # src/netif/ppp/md5.c \
|
---|
102 | # src/netif/ppp/pap.c \
|
---|
103 | # src/netif/ppp/ppp.c \
|
---|
104 | # src/netif/ppp/ppp_oe.c \
|
---|
105 | # src/netif/ppp/randm.c \
|
---|
106 | # src/netif/ppp/vj.c
|
---|
107 |
|
---|