]> The Tcpdump Group git mirrors - tcpdump/blob - Makefile.in
Another length check, also found by the Clang Static Analyzer.
[tcpdump] / Makefile.in
1 # Copyright (c) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997
2 # The Regents of the University of California. All rights reserved.
3 #
4 # Redistribution and use in source and binary forms, with or without
5 # modification, are permitted provided that: (1) source code distributions
6 # retain the above copyright notice and this paragraph in its entirety, (2)
7 # distributions including binary code include the above copyright notice and
8 # this paragraph in its entirety in the documentation or other materials
9 # provided with the distribution, and (3) all advertising materials mentioning
10 # features or use of this software display the following acknowledgement:
11 # ``This product includes software developed by the University of California,
12 # Lawrence Berkeley Laboratory and its contributors.'' Neither the name of
13 # the University nor the names of its contributors may be used to endorse
14 # or promote products derived from this software without specific prior
15 # written permission.
16 # THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
17 # WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
18 # MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
19
20 #
21 # Various configurable paths (remember to edit Makefile.in, not Makefile)
22 #
23
24 # Top level hierarchy
25 prefix = @prefix@
26 exec_prefix = @exec_prefix@
27 datarootdir = @datarootdir@
28 # Pathname of directory to install the binary
29 sbindir = @sbindir@
30 # Pathname of directory to install the man page
31 mandir = @mandir@
32
33 # VPATH
34 srcdir = @srcdir@
35 VPATH = @srcdir@
36
37 #
38 # You shouldn't need to edit anything below here.
39 #
40
41 CC = @CC@
42 MKDEP = @MKDEP@
43 PROG = tcpdump
44 CCOPT = @V_CCOPT@
45 INCLS = -I. @V_INCLS@
46 DEFS = @DEFS@ @CPPFLAGS@ @V_DEFS@
47
48 # Standard CFLAGS
49 CFLAGS = @CFLAGS@
50 FULL_CFLAGS = $(CCOPT) $(DEFS) $(INCLS) $(CFLAGS)
51
52 # Standard LDFLAGS
53 LDFLAGS = @LDFLAGS@
54
55 # Standard LIBS
56 LIBS = @LIBS@
57
58 INSTALL = @INSTALL@
59 INSTALL_PROGRAM = @INSTALL_PROGRAM@
60 INSTALL_DATA = @INSTALL_DATA@
61 RANLIB = @RANLIB@
62
63 DEPENDENCY_CFLAG = @DEPENDENCY_CFLAG@
64
65 # Explicitly define compilation rule since SunOS 4's make doesn't like gcc.
66 # Also, gcc does not remove the .o before forking 'as', which can be a
67 # problem if you don't own the file but can write to the directory.
68 .c.o:
69 @rm -f $@
70 $(CC) $(FULL_CFLAGS) -c $(srcdir)/$*.c
71
72 CSRC = setsignal.c tcpdump.c
73
74 LIBNETDISSECT_SRC=addrtoname.c af.c checksum.c cpack.c gmpls.c oui.c gmt2local.c ipproto.c \
75 nlpid.c l2vpn.c machdep.c parsenfsfh.c in_cksum.c \
76 print-802_11.c print-802_15_4.c print-ap1394.c print-ah.c print-ahcp.c \
77 print-arcnet.c print-aodv.c print-arp.c print-ascii.c print-atalk.c \
78 print-atm.c print-beep.c print-bfd.c print-bgp.c \
79 print-bootp.c print-bt.c print-calm-fast.c print-carp.c print-cdp.c print-cfm.c \
80 print-chdlc.c print-cip.c print-cnfp.c print-dccp.c print-decnet.c \
81 print-domain.c print-dtp.c print-dvmrp.c print-enc.c print-egp.c \
82 print-eap.c print-eigrp.c\
83 print-esp.c print-ether.c print-fddi.c print-forces.c print-fr.c \
84 print-geonet.c print-gre.c print-hsrp.c print-icmp.c print-igmp.c \
85 print-igrp.c print-ip.c print-ipcomp.c print-ipfc.c print-ipnet.c \
86 print-ipx.c print-isakmp.c print-isoclns.c print-juniper.c print-krb.c \
87 print-l2tp.c print-lane.c print-ldp.c print-lldp.c print-llc.c \
88 print-lmp.c print-loopback.c print-lspping.c print-lwapp.c \
89 print-lwres.c print-mobile.c print-mpcp.c print-mpls.c print-mptcp.c print-msdp.c \
90 print-msnlb.c print-nflog.c print-nfs.c print-ntp.c print-null.c \
91 print-olsr.c print-openflow.c print-openflow-1.0.c print-ospf.c \
92 print-pgm.c print-pim.c \
93 print-ppi.c print-ppp.c print-pppoe.c print-pptp.c \
94 print-radius.c print-raw.c print-rip.c print-rpki-rtr.c print-rrcp.c print-rsvp.c \
95 print-rx.c print-sctp.c print-sflow.c print-sip.c print-sl.c print-sll.c \
96 print-slow.c print-snmp.c print-stp.c print-sunatm.c print-sunrpc.c \
97 print-symantec.c print-syslog.c print-tcp.c print-telnet.c print-tftp.c \
98 print-timed.c print-tipc.c print-token.c print-udld.c print-udp.c \
99 print-usb.c print-vjc.c print-vqp.c print-vrrp.c print-vtp.c \
100 print-wb.c print-zephyr.c print-zeromq.c print-vxlan.c print-otv.c \
101 signature.c util.c
102
103 LOCALSRC = @LOCALSRC@
104 GENSRC = version.c
105 LIBOBJS = @LIBOBJS@
106
107 LIBNETDISSECT_OBJ=$(LIBNETDISSECT_SRC:.c=.o) ${LOCALSRC:.c=.o} ${LIBOBJS}
108 LIBNETDISSECT=libnetdissect.a
109
110
111 SRC = $(CSRC) $(GENSRC) $(LOCALSRC) $(LIBNETDISSECT_SRC)
112
113 # We would like to say "OBJ = $(SRC:.c=.o)" but Ultrix's make cannot
114 # hack the extra indirection
115 OBJ = $(CSRC:.c=.o) $(GENSRC:.c=.o) $(LIBNETDISSECT_OBJ)
116 HDR = \
117 addrtoname.h \
118 af.h \
119 ah.h \
120 appletalk.h \
121 atm.h \
122 atmuni31.h \
123 bootp.h \
124 bgp.h \
125 chdlc.h \
126 cpack.h \
127 decnet.h \
128 decode_prefix.h \
129 ether.h \
130 ethertype.h \
131 extract.h \
132 gmpls.h \
133 gmt2local.h \
134 interface.h \
135 interface.h \
136 ip.h \
137 ip6.h \
138 ipproto.h \
139 l2vpn.h \
140 llc.h \
141 machdep.h \
142 mib.h \
143 mpls.h \
144 nameser.h \
145 netdissect.h \
146 nfs.h \
147 nfsfh.h \
148 nlpid.h \
149 openflow.h \
150 ospf.h \
151 oui.h \
152 pcap-missing.h \
153 ppp.h \
154 rpc_auth.h \
155 rpc_msg.h \
156 rpl.h \
157 setsignal.h \
158 signature.h \
159 slcompress.h \
160 smb.h \
161 tcp.h \
162 tcpdump-stdinc.h \
163 udp.h
164
165 TAGHDR = \
166 /usr/include/arpa/tftp.h \
167 /usr/include/net/if_arp.h \
168 /usr/include/net/slip.h \
169 /usr/include/netinet/if_ether.h \
170 /usr/include/netinet/in.h \
171 /usr/include/netinet/ip_icmp.h \
172 /usr/include/netinet/tcp.h \
173 /usr/include/netinet/udp.h \
174 /usr/include/protocols/routed.h
175
176 TAGFILES = $(SRC) $(HDR) $(TAGHDR)
177
178 CLEANFILES = $(PROG) $(OBJ) $(GENSRC)
179
180 EXTRA_DIST = \
181 CHANGES \
182 CREDITS \
183 INSTALL.txt \
184 LICENSE \
185 Makefile.in \
186 Makefile-devel-adds \
187 README.md \
188 Readme.Win32 \
189 VERSION \
190 aclocal.m4 \
191 atime.awk \
192 bpf_dump.c \
193 config.guess \
194 config.h.in \
195 config.sub \
196 configure \
197 configure.in \
198 install-sh \
199 lbl/os-osf4.h \
200 lbl/os-solaris2.h \
201 lbl/os-sunos4.h \
202 lbl/os-ultrix4.h \
203 makemib \
204 missing/addrinfo.h \
205 missing/dlnames.c \
206 missing/datalinks.c \
207 missing/getnameinfo.c \
208 missing/inet_aton.c \
209 missing/inet_ntop.c \
210 missing/inet_pton.c \
211 missing/snprintf.c \
212 missing/sockstorage.h \
213 missing/strdup.c \
214 missing/strlcat.c \
215 missing/strlcpy.c \
216 missing/strsep.c \
217 mkdep \
218 packetdat.awk \
219 pcap_dump_ftell.c \
220 print-babel.c \
221 print-dhcp6.c \
222 print-frag6.c \
223 print-icmp6.c \
224 print-ip6.c \
225 print-ip6opts.c \
226 print-mobility.c \
227 print-netbios.c \
228 print-ospf6.c \
229 print-pflog.c \
230 print-ripng.c \
231 print-rt6.c \
232 print-smb.c \
233 send-ack.awk \
234 smbutil.c \
235 stime.awk \
236 strcasecmp.c \
237 tcpdump.1.in \
238 vfprintf.c \
239 win32/Include/bittypes.h \
240 win32/Include/errno.h \
241 win32/Include/getopt.h \
242 win32/Include/w32_fzs.h \
243 win32/Src/getopt.c \
244 win32/prj/GNUmakefile \
245 win32/prj/WinDump.dsp \
246 win32/prj/WinDump.dsw
247
248 TEST_DIST= `find tests \( -name 'DIFF' -prune \) -o \( -name NEW -prune \) -o -type f \! -name '.*' \! -name '*~' -print`
249
250 all: $(PROG) $(LIBNETDISSECT)
251
252 $(PROG): $(OBJ) @V_PCAPDEP@
253 @rm -f $@
254 $(CC) $(FULL_CFLAGS) $(LDFLAGS) -o $@ $(OBJ) $(LIBS)
255
256 $(LIBNETDISSECT): $(LIBNETDISSECT_OBJ)
257 @rm -f $@
258 $(AR) cr $@ $(LIBNETDISSECT_OBJ)
259 $(RANLIB) $@
260
261 datalinks.o: $(srcdir)/missing/datalinks.c
262 $(CC) $(FULL_CFLAGS) -o $@ -c $(srcdir)/missing/datalinks.c
263 dlnames.o: $(srcdir)/missing/dlnames.c
264 $(CC) $(FULL_CFLAGS) -o $@ -c $(srcdir)/missing/dlnames.c
265 getnameinfo.o: $(srcdir)/missing/getnameinfo.c
266 $(CC) $(FULL_CFLAGS) -o $@ -c $(srcdir)/missing/getnameinfo.c
267 getaddrinfo.o: $(srcdir)/missing/getaddrinfo.c
268 $(CC) $(FULL_CFLAGS) -o $@ -c $(srcdir)/missing/getaddrinfo.c
269 inet_pton.o: $(srcdir)/missing/inet_pton.c
270 $(CC) $(FULL_CFLAGS) -o $@ -c $(srcdir)/missing/inet_pton.c
271 inet_ntop.o: $(srcdir)/missing/inet_ntop.c
272 $(CC) $(FULL_CFLAGS) -o $@ -c $(srcdir)/missing/inet_ntop.c
273 inet_aton.o: $(srcdir)/missing/inet_aton.c
274 $(CC) $(FULL_CFLAGS) -o $@ -c $(srcdir)/missing/inet_aton.c
275 snprintf.o: $(srcdir)/missing/snprintf.c
276 $(CC) $(FULL_CFLAGS) -o $@ -c $(srcdir)/missing/snprintf.c
277 strlcat.o: $(srcdir)/missing/strlcat.c
278 $(CC) $(FULL_CFLAGS) -o $@ -c $(srcdir)/missing/strlcat.c
279 strlcpy.o: $(srcdir)/missing/strlcpy.c
280 $(CC) $(FULL_CFLAGS) -o $@ -c $(srcdir)/missing/strlcpy.c
281 strsep.o: $(srcdir)/missing/strsep.c
282 $(CC) $(FULL_CFLAGS) -o $@ -c $(srcdir)/missing/strsep.c
283
284 version.o: version.c
285 $(CC) $(FULL_CFLAGS) -c version.c
286
287 version.c: $(srcdir)/VERSION
288 @rm -f $@
289 if grep GIT ${srcdir}/VERSION >/dev/null; then \
290 read ver <${srcdir}/VERSION; \
291 echo $$ver | tr -d '\012'; \
292 date +_%Y_%m_%d; \
293 else \
294 cat ${srcdir}/VERSION; \
295 fi | sed -e 's/.*/const char version[] = "&";/' > $@
296
297 install: all
298 [ -d $(DESTDIR)$(sbindir) ] || \
299 (mkdir -p $(DESTDIR)$(sbindir); chmod 755 $(DESTDIR)$(sbindir))
300 $(INSTALL_PROGRAM) $(PROG) $(DESTDIR)$(sbindir)/$(PROG)
301 $(INSTALL_PROGRAM) $(PROG) $(DESTDIR)$(sbindir)/$(PROG).`cat ${srcdir}/VERSION`
302 [ -d $(DESTDIR)$(mandir)/man1 ] || \
303 (mkdir -p $(DESTDIR)$(mandir)/man1; chmod 755 $(DESTDIR)$(mandir)/man1)
304 $(INSTALL_DATA) $(PROG).1 $(DESTDIR)$(mandir)/man1/$(PROG).1
305
306 uninstall:
307 rm -f $(DESTDIR)$(sbindir)/$(PROG)
308 rm -f $(DESTDIR)$(mandir)/man1/$(PROG).1
309
310 lint: $(GENSRC)
311 lint -hbxn $(SRC) | \
312 grep -v 'struct/union .* never defined' | \
313 grep -v 'possible pointer alignment problem'
314
315 clean:
316 rm -f $(CLEANFILES) $(PROG)-`cat VERSION`.tar.gz
317
318 distclean:
319 rm -f $(CLEANFILES) Makefile config.cache config.log config.status \
320 config.h gnuc.h os-proto.h stamp-h stamp-h.in $(PROG).1
321 rm -rf autom4te.cache
322
323 check: tcpdump
324 (cd tests && ./TESTrun.sh)
325
326 tags: $(TAGFILES)
327 ctags -wtd $(TAGFILES)
328
329 TAGS: $(TAGFILES)
330 etags $(TAGFILES)
331
332 releasetar:
333 @cwd=`pwd` ; dir=`basename $$cwd` ; name=$(PROG)-`cat VERSION` ; \
334 mkdir $$name; \
335 tar cf - $(CSRC) $(HDR) $(LIBNETDISSECT_SRC) $(EXTRA_DIST) $(TEST_DIST) | (cd $$name; tar xf -); \
336 tar -c -z -f $$name.tar.gz $$name; \
337 rm -rf $$name
338
339 testlist:
340 echo $(TEST_DIST)
341
342 depend: $(GENSRC)
343 $(MKDEP) -c $(CC) -m $(DEPENDENCY_CFLAG) $(DEFS) $(INCLS) $(SRC)