xref: /freebsd/contrib/tcpdump/Makefile.in (revision aa0a1e58)
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
27prefix = @prefix@
28exec_prefix = @exec_prefix@
29# Pathname of directory to install the binary
30sbindir = @sbindir@
31# Pathname of directory to install the man page
32mandir = @mandir@
33
34# VPATH
35srcdir = @srcdir@
36VPATH = @srcdir@
37
38#
39# You shouldn't need to edit anything below here.
40#
41
42CC = @CC@
43PROG = tcpdump
44CCOPT = @V_CCOPT@
45INCLS = -I. @V_INCLS@
46DEFS = @DEFS@ @CPPFLAGS@ @V_DEFS@
47
48# Standard CFLAGS
49CFLAGS = $(CCOPT) $(DEFS) $(INCLS)
50
51# Standard LDFLAGS
52LDFLAGS = @LDFLAGS@
53
54# Standard LIBS
55LIBS = @LIBS@
56
57INSTALL = @INSTALL@
58INSTALL_PROGRAM = @INSTALL_PROGRAM@
59INSTALL_DATA = @INSTALL_DATA@
60RANLIB = @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
69CSRC =	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 print-ipnet.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 print-usb.c \
92	print-vjc.c print-vqp.c print-vrrp.c print-vtp.c print-forces.c \
93	print-wb.c print-zephyr.c signature.c setsignal.c tcpdump.c util.c
94
95LIBNETDISSECT_SRC=print-isakmp.c
96LIBNETDISSECT_OBJ=$(LIBNETDISSECT_SRC:.c=.o)
97LIBNETDISSECT=libnetdissect.a
98
99LOCALSRC = @LOCALSRC@
100GENSRC = version.c
101LIBOBJS = @LIBOBJS@
102
103SRC =	$(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
107OBJ =	$(CSRC:.c=.o) $(GENSRC:.c=.o) $(LOCALSRC:.c=.o) $(LIBOBJS) $(LIBNETDISSECT_OBJ)
108HDR = \
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	forces.h \
132	gmpls.h \
133	gmt2local.h \
134	icmp6.h \
135	ieee802_11.h \
136	ieee802_11_radio.h \
137	igrp.h \
138	interface.h \
139	interface.h \
140	ip.h \
141	ip6.h \
142	ipfc.h \
143	ipnet.h \
144	ipproto.h \
145	ipsec_doi.h \
146	ipx.h \
147	isakmp.h \
148	l2tp.h \
149	l2vpn.h \
150	lane.h \
151	llc.h \
152	machdep.h \
153	mib.h \
154	mpls.h \
155	nameser.h \
156	netbios.h \
157	netdissect.h \
158	nfs.h \
159	nfsfh.h \
160	nlpid.h \
161	ntp.h \
162	oakley.h \
163	ospf.h \
164	ospf6.h \
165	oui.h \
166	pcap-missing.h \
167	pmap_prot.h \
168	ppp.h \
169	route6d.h \
170	rpc_auth.h \
171	rpc_msg.h \
172	rx.h \
173	sctpConstants.h \
174	sctpHeader.h \
175	setsignal.h \
176	signature.h \
177	slcompress.h \
178	slip.h \
179	sll.h \
180	smb.h \
181	tcp.h \
182	tcpdump-stdinc.h \
183	telnet.h \
184	tftp.h \
185	timed.h \
186	token.h \
187	udp.h
188
189TAGHDR = \
190	/usr/include/arpa/tftp.h \
191	/usr/include/net/if_arp.h \
192	/usr/include/net/slip.h \
193	/usr/include/netinet/if_ether.h \
194	/usr/include/netinet/in.h \
195	/usr/include/netinet/ip_icmp.h \
196	/usr/include/netinet/tcp.h \
197	/usr/include/netinet/udp.h \
198	/usr/include/protocols/routed.h
199
200TAGFILES = $(SRC) $(HDR) $(TAGHDR)
201
202CLEANFILES = $(PROG) $(OBJ) $(GENSRC)
203
204EXTRA_DIST = \
205	CHANGES \
206	CREDITS \
207	INSTALL.txt \
208	LICENSE \
209	Makefile.in \
210	Makefile-devel-adds \
211	README \
212	Readme.Win32 \
213	VERSION \
214	aclocal.m4 \
215	atime.awk \
216	bpf_dump.c \
217	config.guess \
218	config.h.in \
219	config.sub \
220	configure \
221	configure.in \
222	install-sh \
223	lbl/os-osf4.h \
224	lbl/os-solaris2.h \
225	lbl/os-sunos4.h \
226	lbl/os-ultrix4.h \
227	makemib \
228	missing/addrinfo.h \
229	missing/addrsize.h \
230	missing/bittypes.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/Arpa/tftp.h \
343	win32/Include/errno.h \
344	win32/Include/getopt.h \
345	win32/Include/inetprivate.h \
346	win32/Include/telnet.h \
347	win32/Include/w32_fzs.h \
348	win32/Include/Netinet/in_systm.h \
349	win32/Include/Netinet/ip.h \
350	win32/Src/getopt.c \
351	win32/prj/GNUmakefile \
352	win32/prj/WinDump.dsp \
353	win32/prj/WinDump.dsw
354
355all: $(PROG)
356
357$(PROG): $(OBJ) @V_PCAPDEP@
358	@rm -f $@
359	$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(OBJ) $(LIBS)
360
361$(LIBNETDISSECT): $(LIBNETDISSECT_OBJ)
362	@rm -f $@
363	$(AR) cr $@ $(LIBNETDISSECT_OBJ)
364	$(RANLIB) $@
365
366datalinks.o: $(srcdir)/missing/datalinks.c
367	$(CC) $(CFLAGS) -o $@ -c $(srcdir)/missing/datalinks.c
368dlnames.o: $(srcdir)/missing/dlnames.c
369	$(CC) $(CFLAGS) -o $@ -c $(srcdir)/missing/dlnames.c
370getnameinfo.o: $(srcdir)/missing/getnameinfo.c
371	$(CC) $(CFLAGS) -o $@ -c $(srcdir)/missing/getnameinfo.c
372getaddrinfo.o: $(srcdir)/missing/getaddrinfo.c
373	$(CC) $(CFLAGS) -o $@ -c $(srcdir)/missing/getaddrinfo.c
374inet_pton.o: $(srcdir)/missing/inet_pton.c
375	$(CC) $(CFLAGS) -o $@ -c $(srcdir)/missing/inet_pton.c
376inet_ntop.o: $(srcdir)/missing/inet_ntop.c
377	$(CC) $(CFLAGS) -o $@ -c $(srcdir)/missing/inet_ntop.c
378inet_aton.o: $(srcdir)/missing/inet_aton.c
379	$(CC) $(CFLAGS) -o $@ -c $(srcdir)/missing/inet_aton.c
380snprintf.o: $(srcdir)/missing/snprintf.c
381	$(CC) $(CFLAGS) -o $@ -c $(srcdir)/missing/snprintf.c
382strlcat.o: $(srcdir)/missing/strlcat.c
383	$(CC) $(CFLAGS) -o $@ -c $(srcdir)/missing/strlcat.c
384strlcpy.o: $(srcdir)/missing/strlcpy.c
385	$(CC) $(CFLAGS) -o $@ -c $(srcdir)/missing/strlcpy.c
386strsep.o: $(srcdir)/missing/strsep.c
387	$(CC) $(CFLAGS) -o $@ -c $(srcdir)/missing/strsep.c
388
389version.o: version.c
390	$(CC) $(CFLAGS) -c version.c
391
392version.c: $(srcdir)/VERSION
393	@rm -f $@
394	if grep GIT ${srcdir}/VERSION >/dev/null; then \
395		read ver <${srcdir}/VERSION; \
396		echo $$ver | tr -d '\012'; \
397		date +_%Y_%m_%d; \
398	else \
399		cat ${srcdir}/VERSION; \
400	fi | sed -e 's/.*/const char version[] = "&";/' > $@
401
402install: all
403	[ -d $(DESTDIR)$(sbindir) ] || \
404	    (mkdir -p $(DESTDIR)$(sbindir); chmod 755 $(DESTDIR)$(sbindir))
405	$(INSTALL_PROGRAM) $(PROG) $(DESTDIR)$(sbindir)/$(PROG)
406	$(INSTALL_PROGRAM) $(PROG) $(DESTDIR)$(sbindir)/$(PROG).`cat ${srcdir}/VERSION`
407	[ -d $(DESTDIR)$(mandir)/man1 ] || \
408	    (mkdir -p $(DESTDIR)$(mandir)/man1; chmod 755 $(DESTDIR)$(mandir)/man1)
409	$(INSTALL_DATA) $(PROG).1 $(DESTDIR)$(mandir)/man1/$(PROG).1
410
411uninstall:
412	rm -f $(DESTDIR)$(sbindir)/$(PROG)
413	rm -f $(DESTDIR)$(mandir)/man1/$(PROG).1
414
415lint: $(GENSRC)
416	lint -hbxn $(SRC) | \
417	    grep -v 'struct/union .* never defined' | \
418	    grep -v 'possible pointer alignment problem'
419
420clean:
421	rm -f $(CLEANFILES) $(PROG)-`cat VERSION`.tar.gz
422
423distclean:
424	rm -f $(CLEANFILES) Makefile config.cache config.log config.status \
425	    config.h gnuc.h os-proto.h stamp-h stamp-h.in $(PROG).1
426
427check: tcpdump
428	uudecode --help || (echo "No uudecode program found, not running tests"; echo "apt-get/rpm install sharutils?"; exit 1)
429	(cd tests && ./TESTrun.sh)
430
431tags: $(TAGFILES)
432	ctags -wtd $(TAGFILES)
433
434TAGS: $(TAGFILES)
435	etags $(TAGFILES)
436
437releasetar:
438	@cwd=`pwd` ; dir=`basename $$cwd` ; name=$(PROG)-`cat VERSION` ; \
439	   mkdir $$name; \
440	   tar cf - $(CSRC) $(HDR) $(LIBNETDISSECT_SRC) $(EXTRA_DIST) | (cd $$name; tar xf -); \
441	   tar -c -z -f $$name.tar.gz $$name; \
442	   rm -rf $$name
443
444depend: $(GENSRC)
445	${srcdir}/mkdep -c $(CC) $(DEFS) $(INCLS) $(SRC)
446