]> The Tcpdump Group git mirrors - tcpdump/blob - Makefile.in
Merge branch 'master' of git+ssh://bpf.tcpdump.org/tcpdump/master/git/tcpdump
[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 # Pathname of directory to install the binary
30 sbindir = @sbindir@
31 # Pathname of directory to install the man page
32 mandir = @mandir@
33
34 # VPATH
35 srcdir = @srcdir@
36 VPATH = @srcdir@
37
38 #
39 # You shouldn't need to edit anything below here.
40 #
41
42 CC = @CC@
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 # Explicitly define compilation rule since SunOS 4's make doesn't like gcc.
64 # Also, gcc does not remove the .o before forking 'as', which can be a
65 # problem if you don't own the file but can write to the directory.
66 .c.o:
67 @rm -f $@
68 $(CC) $(FULL_CFLAGS) -c $(srcdir)/$*.c
69
70 CSRC = addrtoname.c af.c checksum.c cpack.c gmpls.c oui.c gmt2local.c ipproto.c \
71 nlpid.c l2vpn.c machdep.c parsenfsfh.c \
72 print-802_11.c print-802_15_4.c print-ap1394.c print-ah.c \
73 print-arcnet.c print-aodv.c print-arp.c print-ascii.c print-atalk.c \
74 print-atm.c print-beep.c print-bfd.c print-bgp.c print-bootp.c \
75 print-bt.c print-cdp.c print-cfm.c print-chdlc.c print-cip.c \
76 print-cnfp.c print-dccp.c print-decnet.c \
77 print-domain.c print-dtp.c print-dvmrp.c print-enc.c print-egp.c \
78 print-eap.c print-eigrp.c\
79 print-esp.c print-ether.c print-fddi.c print-fr.c \
80 print-gre.c print-hsrp.c print-icmp.c print-igmp.c \
81 print-igrp.c print-ip.c print-ipcomp.c print-ipfc.c print-ipnet.c \
82 print-ipx.c print-isoclns.c print-juniper.c print-krb.c \
83 print-l2tp.c print-lane.c print-ldp.c print-lldp.c print-llc.c \
84 print-lmp.c print-lspping.c print-lwapp.c \
85 print-lwres.c print-mobile.c print-mpcp.c print-mpls.c print-msdp.c \
86 print-nfs.c print-ntp.c print-null.c print-olsr.c print-ospf.c \
87 print-pgm.c print-pim.c print-ppp.c print-pppoe.c print-pptp.c \
88 print-radius.c print-raw.c print-rip.c print-rrcp.c print-rsvp.c \
89 print-rx.c print-sctp.c print-sflow.c print-sip.c print-sl.c print-sll.c \
90 print-slow.c print-snmp.c print-stp.c print-sunatm.c print-sunrpc.c \
91 print-symantec.c print-syslog.c print-tcp.c print-telnet.c print-tftp.c \
92 print-timed.c print-token.c print-udld.c print-udp.c print-usb.c \
93 print-vjc.c print-vqp.c print-vrrp.c print-vtp.c print-forces.c \
94 print-wb.c print-zephyr.c signature.c setsignal.c tcpdump.c util.c
95
96 LIBNETDISSECT_SRC=print-isakmp.c
97 LIBNETDISSECT_OBJ=$(LIBNETDISSECT_SRC:.c=.o)
98 LIBNETDISSECT=libnetdissect.a
99
100 LOCALSRC = @LOCALSRC@
101 GENSRC = version.c
102 LIBOBJS = @LIBOBJS@
103
104 SRC = $(CSRC) $(GENSRC) $(LOCALSRC) $(LIBNETDISSECT_SRC)
105
106 # We would like to say "OBJ = $(SRC:.c=.o)" but Ultrix's make cannot
107 # hack the extra indirection
108 OBJ = $(CSRC:.c=.o) $(GENSRC:.c=.o) $(LOCALSRC:.c=.o) $(LIBOBJS) $(LIBNETDISSECT_OBJ)
109 HDR = \
110 acconfig.h \
111 addrtoname.h \
112 af.h \
113 ah.h \
114 aodv.h \
115 appletalk.h \
116 arcnet.h \
117 atm.h \
118 atmuni31.h \
119 bootp.h \
120 bgp.h \
121 chdlc.h \
122 cpack.h \
123 dccp.h \
124 decnet.h \
125 decode_prefix.h \
126 enc.h \
127 esp.h \
128 ether.h \
129 ethertype.h \
130 extract.h \
131 fddi.h \
132 forces.h \
133 gmpls.h \
134 gmt2local.h \
135 icmp6.h \
136 ieee802_11.h \
137 ieee802_11_radio.h \
138 igrp.h \
139 interface.h \
140 interface.h \
141 ip.h \
142 ip6.h \
143 ipfc.h \
144 ipnet.h \
145 ipproto.h \
146 ipsec_doi.h \
147 ipx.h \
148 isakmp.h \
149 l2tp.h \
150 l2vpn.h \
151 lane.h \
152 llc.h \
153 machdep.h \
154 mib.h \
155 mpls.h \
156 nameser.h \
157 netbios.h \
158 netdissect.h \
159 nfs.h \
160 nfsfh.h \
161 nlpid.h \
162 ntp.h \
163 oakley.h \
164 ospf.h \
165 ospf6.h \
166 oui.h \
167 pcap-missing.h \
168 pmap_prot.h \
169 ppp.h \
170 route6d.h \
171 rpc_auth.h \
172 rpc_msg.h \
173 rx.h \
174 sctpConstants.h \
175 sctpHeader.h \
176 setsignal.h \
177 signature.h \
178 slcompress.h \
179 slip.h \
180 sll.h \
181 smb.h \
182 tcp.h \
183 tcpdump-stdinc.h \
184 telnet.h \
185 tftp.h \
186 timed.h \
187 token.h \
188 udp.h
189
190 TAGHDR = \
191 /usr/include/arpa/tftp.h \
192 /usr/include/net/if_arp.h \
193 /usr/include/net/slip.h \
194 /usr/include/netinet/if_ether.h \
195 /usr/include/netinet/in.h \
196 /usr/include/netinet/ip_icmp.h \
197 /usr/include/netinet/tcp.h \
198 /usr/include/netinet/udp.h \
199 /usr/include/protocols/routed.h
200
201 TAGFILES = $(SRC) $(HDR) $(TAGHDR)
202
203 CLEANFILES = $(PROG) $(OBJ) $(GENSRC)
204
205 EXTRA_DIST = \
206 CHANGES \
207 CREDITS \
208 INSTALL.txt \
209 LICENSE \
210 Makefile.in \
211 Makefile-devel-adds \
212 README \
213 Readme.Win32 \
214 VERSION \
215 aclocal.m4 \
216 atime.awk \
217 bpf_dump.c \
218 config.guess \
219 config.h.in \
220 config.sub \
221 configure \
222 configure.in \
223 install-sh \
224 lbl/os-osf4.h \
225 lbl/os-solaris2.h \
226 lbl/os-sunos4.h \
227 lbl/os-ultrix4.h \
228 makemib \
229 missing/addrinfo.h \
230 missing/addrsize.h \
231 missing/dlnames.c \
232 missing/datalinks.c \
233 missing/getnameinfo.c \
234 missing/inet_aton.c \
235 missing/inet_ntop.c \
236 missing/inet_pton.c \
237 missing/resolv6.h \
238 missing/resolv_ext.h \
239 missing/snprintf.c \
240 missing/sockstorage.h \
241 missing/strdup.c \
242 missing/strlcat.c \
243 missing/strlcpy.c \
244 missing/strsep.c \
245 mkdep \
246 packetdat.awk \
247 pcap_dump_ftell.c \
248 print-dhcp6.c \
249 print-frag6.c \
250 print-icmp6.c \
251 print-ip6.c \
252 print-ip6opts.c \
253 print-mobility.c \
254 print-netbios.c \
255 print-ospf6.c \
256 print-pflog.c \
257 print-ripng.c \
258 print-rt6.c \
259 print-smb.c \
260 send-ack.awk \
261 smbutil.c \
262 stime.awk \
263 strcasecmp.c \
264 tcpdump.1.in \
265 tests/02-sunrise-sunset-esp.puu \
266 tests/08-sunrise-sunset-aes.puu \
267 tests/08-sunrise-sunset-esp2.puu \
268 tests/TESTLIST \
269 tests/TESTonce \
270 tests/TESTrun.sh \
271 tests/bgp-infinite-loop.pcap \
272 tests/bgp_vpn_attrset.out \
273 tests/bgp_vpn_attrset.pcap \
274 tests/chdlc-slarp-short.pcap \
275 tests/chdlc-slarp.pcap \
276 tests/dio.out \
277 tests/dio.pcap \
278 tests/e1000g.out \
279 tests/e1000g.pcap \
280 tests/eapon1.gdbinit \
281 tests/eapon1.out \
282 tests/eapon1.puu \
283 tests/eapon2.puu \
284 tests/esp-secrets.txt \
285 tests/esp0.out \
286 tests/esp1.gdbinit \
287 tests/esp1.out \
288 tests/esp2.gdbinit \
289 tests/esp2.out \
290 tests/esp3.gdbinit \
291 tests/esp4.gdbinit \
292 tests/esp5.gdbinit \
293 tests/esp5.out \
294 tests/espudp1.out \
295 tests/espudp1.puu \
296 tests/forces1.out \
297 tests/forces1.pcap \
298 tests/forces1vvv.out \
299 tests/forces1vvvv.out \
300 tests/forces2.out \
301 tests/forces2.pcap \
302 tests/forces2v.out \
303 tests/forces2vv.out \
304 tests/ikev2.puu \
305 tests/ikev2four.out \
306 tests/ikev2four.puu \
307 tests/ikev2fourv.out \
308 tests/ikev2fourv4.out \
309 tests/ikev2pI2-secrets.txt \
310 tests/ikev2pI2.out \
311 tests/ikev2pI2.puu \
312 tests/isakmp-delete-segfault.puu \
313 tests/isakmp-identification-segfault.puu \
314 tests/isakmp-pointer-loop.puu \
315 tests/isakmp1.out \
316 tests/isakmp2.out \
317 tests/isakmp3.out \
318 tests/isakmp4.out \
319 tests/isakmp4500.puu \
320 tests/isis-infinite-loop.pcap \
321 tests/ldp-infinite-loop.pcap \
322 tests/lmp.out \
323 tests/lmp.puu \
324 tests/lmp.sh \
325 tests/lspping-fec-ldp.pcap \
326 tests/lspping-fec-rsvp.pcap \
327 tests/mpls-ldp-hello.out \
328 tests/mpls-ldp-hello.puu \
329 tests/mpls-traceroute.pcap \
330 tests/ospf-gmpls.out \
331 tests/ospf-gmpls.puu \
332 tests/print-A.out \
333 tests/print-AA.out \
334 tests/print-capX.out \
335 tests/print-capXX.out \
336 tests/print-flags.puu \
337 tests/print-flags.sh \
338 tests/print-x.out \
339 tests/print-xx.out \
340 tests/rsvp-infinite-loop.pcap \
341 vfprintf.c \
342 win32/Include/bittypes.h \
343 win32/Include/errno.h \
344 win32/Include/getopt.h \
345 win32/Include/w32_fzs.h \
346 win32/Src/getopt.c \
347 win32/prj/GNUmakefile \
348 win32/prj/WinDump.dsp \
349 win32/prj/WinDump.dsw
350
351 all: $(PROG)
352
353 $(PROG): $(OBJ) @V_PCAPDEP@
354 @rm -f $@
355 $(CC) $(FULL_CFLAGS) $(LDFLAGS) -o $@ $(OBJ) $(LIBS)
356
357 $(LIBNETDISSECT): $(LIBNETDISSECT_OBJ)
358 @rm -f $@
359 $(AR) cr $@ $(LIBNETDISSECT_OBJ)
360 $(RANLIB) $@
361
362 datalinks.o: $(srcdir)/missing/datalinks.c
363 $(CC) $(FULL_CFLAGS) -o $@ -c $(srcdir)/missing/datalinks.c
364 dlnames.o: $(srcdir)/missing/dlnames.c
365 $(CC) $(FULL_CFLAGS) -o $@ -c $(srcdir)/missing/dlnames.c
366 getnameinfo.o: $(srcdir)/missing/getnameinfo.c
367 $(CC) $(FULL_CFLAGS) -o $@ -c $(srcdir)/missing/getnameinfo.c
368 getaddrinfo.o: $(srcdir)/missing/getaddrinfo.c
369 $(CC) $(FULL_CFLAGS) -o $@ -c $(srcdir)/missing/getaddrinfo.c
370 inet_pton.o: $(srcdir)/missing/inet_pton.c
371 $(CC) $(FULL_CFLAGS) -o $@ -c $(srcdir)/missing/inet_pton.c
372 inet_ntop.o: $(srcdir)/missing/inet_ntop.c
373 $(CC) $(FULL_CFLAGS) -o $@ -c $(srcdir)/missing/inet_ntop.c
374 inet_aton.o: $(srcdir)/missing/inet_aton.c
375 $(CC) $(FULL_CFLAGS) -o $@ -c $(srcdir)/missing/inet_aton.c
376 snprintf.o: $(srcdir)/missing/snprintf.c
377 $(CC) $(FULL_CFLAGS) -o $@ -c $(srcdir)/missing/snprintf.c
378 strlcat.o: $(srcdir)/missing/strlcat.c
379 $(CC) $(FULL_CFLAGS) -o $@ -c $(srcdir)/missing/strlcat.c
380 strlcpy.o: $(srcdir)/missing/strlcpy.c
381 $(CC) $(FULL_CFLAGS) -o $@ -c $(srcdir)/missing/strlcpy.c
382 strsep.o: $(srcdir)/missing/strsep.c
383 $(CC) $(FULL_CFLAGS) -o $@ -c $(srcdir)/missing/strsep.c
384
385 version.o: version.c
386 $(CC) $(FULL_CFLAGS) -c version.c
387
388 version.c: $(srcdir)/VERSION
389 @rm -f $@
390 if grep GIT ${srcdir}/VERSION >/dev/null; then \
391 read ver <${srcdir}/VERSION; \
392 echo $$ver | tr -d '\012'; \
393 date +_%Y_%m_%d; \
394 else \
395 cat ${srcdir}/VERSION; \
396 fi | sed -e 's/.*/const char version[] = "&";/' > $@
397
398 install: all
399 [ -d $(DESTDIR)$(sbindir) ] || \
400 (mkdir -p $(DESTDIR)$(sbindir); chmod 755 $(DESTDIR)$(sbindir))
401 $(INSTALL_PROGRAM) $(PROG) $(DESTDIR)$(sbindir)/$(PROG)
402 $(INSTALL_PROGRAM) $(PROG) $(DESTDIR)$(sbindir)/$(PROG).`cat ${srcdir}/VERSION`
403 [ -d $(DESTDIR)$(mandir)/man1 ] || \
404 (mkdir -p $(DESTDIR)$(mandir)/man1; chmod 755 $(DESTDIR)$(mandir)/man1)
405 $(INSTALL_DATA) $(PROG).1 $(DESTDIR)$(mandir)/man1/$(PROG).1
406
407 uninstall:
408 rm -f $(DESTDIR)$(sbindir)/$(PROG)
409 rm -f $(DESTDIR)$(mandir)/man1/$(PROG).1
410
411 lint: $(GENSRC)
412 lint -hbxn $(SRC) | \
413 grep -v 'struct/union .* never defined' | \
414 grep -v 'possible pointer alignment problem'
415
416 clean:
417 rm -f $(CLEANFILES) $(PROG)-`cat VERSION`.tar.gz
418
419 distclean:
420 rm -f $(CLEANFILES) Makefile config.cache config.log config.status \
421 config.h gnuc.h os-proto.h stamp-h stamp-h.in $(PROG).1
422 rm -rf autom4te.cache
423
424 check: tcpdump
425 uudecode --help || (echo "No uudecode program found, not running tests"; echo "apt-get/rpm install sharutils?"; exit 1)
426 (cd tests && ./TESTrun.sh)
427
428 tags: $(TAGFILES)
429 ctags -wtd $(TAGFILES)
430
431 TAGS: $(TAGFILES)
432 etags $(TAGFILES)
433
434 releasetar:
435 @cwd=`pwd` ; dir=`basename $$cwd` ; name=$(PROG)-`cat VERSION` ; \
436 mkdir $$name; \
437 tar cf - $(CSRC) $(HDR) $(LIBNETDISSECT_SRC) $(EXTRA_DIST) | (cd $$name; tar xf -); \
438 tar -c -z -f $$name.tar.gz $$name; \
439 rm -rf $$name
440
441 depend: $(GENSRC)
442 ${srcdir}/mkdep -c $(CC) $(DEFS) $(INCLS) $(SRC)