1 | # $Id: Makefile.kmk$
|
---|
2 | ## @file
|
---|
3 | # Adds sources list and defines required to LWIP 1.2.0 compilation
|
---|
4 | #
|
---|
5 |
|
---|
6 | #
|
---|
7 | # Copyright (C) 2006-2012 Oracle Corporation
|
---|
8 | #
|
---|
9 | # This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | # available from http://www.virtualbox.org. This file is free software;
|
---|
11 | # you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | # General Public License (GPL) as published by the Free Software
|
---|
13 | # Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | # VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | # hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | #
|
---|
17 |
|
---|
18 | LWIP_INCS += \
|
---|
19 | Network/lwip/src/include \
|
---|
20 | Network/lwip/src/include/ipv4 \
|
---|
21 | Network/lwip/vbox/include
|
---|
22 | LWIP_SOURCES += \
|
---|
23 | Network/lwip/src/api/api_lib.c \
|
---|
24 | Network/lwip/src/api/api_msg.c \
|
---|
25 | Network/lwip/src/api/err.c \
|
---|
26 | Network/lwip/src/api/sockets.c \
|
---|
27 | Network/lwip/src/api/tcpip.c \
|
---|
28 | Network/lwip/src/core/tcp_in.c \
|
---|
29 | Network/lwip/src/core/dhcp.c \
|
---|
30 | Network/lwip/src/core/inet.c \
|
---|
31 | Network/lwip/src/core/mem.c \
|
---|
32 | Network/lwip/src/core/memp.c \
|
---|
33 | Network/lwip/src/core/netif.c \
|
---|
34 | Network/lwip/src/core/pbuf.c \
|
---|
35 | Network/lwip/src/core/raw.c \
|
---|
36 | Network/lwip/src/core/stats.c \
|
---|
37 | Network/lwip/src/core/sys.c \
|
---|
38 | Network/lwip/src/core/tcp.c \
|
---|
39 | Network/lwip/src/core/ipv4/ip_addr.c \
|
---|
40 | Network/lwip/src/core/ipv4/icmp.c \
|
---|
41 | Network/lwip/src/core/ipv4/ip.c \
|
---|
42 | Network/lwip/src/core/ipv4/ip_frag.c \
|
---|
43 | Network/lwip/src/core/tcp_out.c \
|
---|
44 | Network/lwip/src/core/udp.c \
|
---|
45 | Network/lwip/src/netif/etharp.c \
|
---|
46 | Network/lwip/vbox/sys_arch.c
|
---|
47 | ifneq ($(KBUILD_TARGET),win)
|
---|
48 | Network/lwip/src/api/sockets.c_CFLAGS = $(VBOX_GCC_Wno-address)
|
---|
49 | endif
|
---|