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