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