|
|
@@ -77,23 +77,25 @@ flow/PacketProtoEncoder.c
|
|
|
flow/PacketProtoDecoder.c
|
|
|
socksclient/BSocksClient.c
|
|
|
tuntap/BTap.c
|
|
|
-lwip/src/core/timers.c
|
|
|
lwip/src/core/udp.c
|
|
|
lwip/src/core/memp.c
|
|
|
lwip/src/core/init.c
|
|
|
lwip/src/core/pbuf.c
|
|
|
lwip/src/core/tcp.c
|
|
|
lwip/src/core/tcp_out.c
|
|
|
+lwip/src/core/sys.c
|
|
|
lwip/src/core/netif.c
|
|
|
lwip/src/core/def.c
|
|
|
lwip/src/core/mem.c
|
|
|
lwip/src/core/tcp_in.c
|
|
|
lwip/src/core/stats.c
|
|
|
+lwip/src/core/ip.c
|
|
|
+lwip/src/core/timeouts.c
|
|
|
lwip/src/core/inet_chksum.c
|
|
|
lwip/src/core/ipv4/icmp.c
|
|
|
lwip/src/core/ipv4/ip4.c
|
|
|
lwip/src/core/ipv4/ip4_addr.c
|
|
|
-lwip/src/core/ipv4/ip_frag.c
|
|
|
+lwip/src/core/ipv4/ip4_frag.c
|
|
|
lwip/src/core/ipv6/ip6.c
|
|
|
lwip/src/core/ipv6/nd6.c
|
|
|
lwip/src/core/ipv6/icmp6.c
|
|
|
@@ -114,7 +116,7 @@ set -x
|
|
|
|
|
|
OBJS=()
|
|
|
for f in $SOURCES; do
|
|
|
- obj=$(basename "${f}").o
|
|
|
+ obj=${f//\//_}.o
|
|
|
"${CC}" -c ${CFLAGS} "${INCLUDES[@]}" "${DEFS[@]}" "${SRCDIR}/${f}" -o "${obj}"
|
|
|
OBJS=( "${OBJS[@]}" "${obj}" )
|
|
|
done
|