-
Notifications
You must be signed in to change notification settings - Fork 28
/
Makefile.in
110 lines (108 loc) · 3.66 KB
/
Makefile.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
#
# Copyright (c) 2012-2013 Takayuki Usui
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
#
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
# IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
# NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#
srcdir = @srcdir@
prefix = @prefix@
exec_prefix = $(prefix)
bindir = $(exec_prefix)/bin
sbindir = $(exec_prefix)/sbin
libexecdir = $(exec_prefix)/libexec
datadir = $(prefix)/share
IP_VERSION = 4
CC = @CC@
CPPFLAGS = @DEFS@ -I. -Ilwip-contrib/ports/unix/include \
-Ilwip/src/include/ipv$(IP_VERSION) -Ilwip/src/include \
-Ilwip-contrib/apps/chargen -Ilwip-contrib/apps/httpserver \
-Ilwip-contrib/apps/tcpecho -Ilwip-contrib/apps/udpecho @CPPFLAGS@
CFLAGS = -pthread -Wall @CFLAGS@
LDFLAGS = -pthread @LDFLAGS@
LIBS = @LIBS@
INSTALL = @INSTALL@
SOURCES = \
lwip/src/api/api_lib.c \
lwip/src/api/api_msg.c \
lwip/src/api/err.c \
lwip/src/api/netbuf.c \
lwip/src/api/netdb.c \
lwip/src/api/netifapi.c \
lwip/src/api/sockets.c \
lwip/src/api/tcpip.c \
lwip/src/core/def.c \
lwip/src/core/dhcp.c \
lwip/src/core/dns.c \
lwip/src/core/init.c \
lwip/src/core/mem.c \
lwip/src/core/memp.c \
lwip/src/core/netif.c \
lwip/src/core/pbuf.c \
lwip/src/core/raw.c \
lwip/src/core/stats.c \
lwip/src/core/sys.c \
lwip/src/core/tcp.c \
lwip/src/core/tcp_in.c \
lwip/src/core/tcp_out.c \
lwip/src/core/timers.c \
lwip/src/core/udp.c \
lwip/src/core/ipv4/autoip.c \
lwip/src/core/ipv4/icmp.c \
lwip/src/core/ipv4/igmp.c \
lwip/src/core/ipv4/inet.c \
lwip/src/core/ipv4/inet_chksum.c \
lwip/src/core/ipv4/ip.c \
lwip/src/core/ipv4/ip_addr.c \
lwip/src/core/ipv4/ip_frag.c \
lwip/src/core/snmp/asn1_dec.c \
lwip/src/core/snmp/asn1_enc.c \
lwip/src/core/snmp/mib2.c \
lwip/src/core/snmp/mib_structs.c \
lwip/src/core/snmp/msg_in.c \
lwip/src/core/snmp/msg_out.c \
lwip/src/netif/etharp.c \
lwip-contrib/ports/unix/sys_arch.c \
lwip-contrib/apps/chargen/chargen.c \
lwip-contrib/apps/httpserver/httpserver-netconn.c \
lwip-contrib/apps/tcpecho/tcpecho.c \
lwip-contrib/apps/udpecho/udpecho.c \
tapif.c \
lwip-tap.c
OBJS := $(foreach f,$(SOURCES),$(notdir $(f:.c=.o)))
%.o:
$(CC) $(CFLAGS) $(CPPFLAGS) -c $<
.PHONY: all check-syntax depend dep clean distclean
all: lwip-tap
lwip-tap: $(OBJS)
$(CC) $(LDFLAGS) $(LIBS) -o lwip-tap $(OBJS)
check-syntax:
$(CC) $(CFLAGS) $(CPPFLAGS) -fsyntax-only $(CHK_SOURCES)
depend dep:
$(CC) $(CFLAGS) $(CPPFLAGS) -MM $(SOURCES) >.depend
clean:
rm -f config.cache config.log
rm -f lwip-tap $(OBJS) *~
distclean: clean
rm -f Makefile config.h config.status
rm -rf autom4te.cache
ifeq (.depend,$(wildcard .depend))
include .depend
endif