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