]> The Tcpdump Group git mirrors - tcpdump/blob - Makefile.in
Use u_intXX_t instead of uintXX_t, because the fomer ones are the ones that
[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.321 2008-02-26 19:24:14 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)
108 HDR = addrtoname.h appletalk.h bootp.h cpack.h dccp.h decnet.h \
109 ethertype.h extract.h fddi.h gmt2local.h igrp.h interface.h \
110 ipx.h llc.h machdep.h mib.h nfsfh.h nfsv2.h ntp.h ospf.h \
111 setsignal.h \
112 gnuc.h ipsec_doi.h isakmp.h l2tp.h nameser.h \
113 netbios.h oakley.h ospf6.h pf.h ppp.h route6d.h
114
115 TAGHDR = \
116 /usr/include/arpa/tftp.h \
117 /usr/include/net/if_arp.h \
118 /usr/include/net/slip.h \
119 /usr/include/netinet/if_ether.h \
120 /usr/include/netinet/in.h \
121 /usr/include/netinet/ip_icmp.h \
122 /usr/include/netinet/tcp.h \
123 /usr/include/netinet/udp.h \
124 /usr/include/protocols/routed.h
125
126 TAGFILES = $(SRC) $(HDR) $(TAGHDR)
127
128 CLEANFILES = $(PROG) $(OBJ) $(GENSRC)
129
130 all: $(PROG)
131
132 $(PROG): $(OBJ) @V_PCAPDEP@
133 @rm -f $@
134 $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(OBJ) $(LIBS)
135
136 $(LIBNETDISSECT): $(LIBNETDISSECT_OBJ)
137 @rm -f $@
138 $(AR) cr $@ $(LIBNETDISSECT_OBJ)
139 $(RANLIB) $@
140
141 datalinks.o: $(srcdir)/missing/datalinks.c
142 $(CC) $(CFLAGS) -o $@ -c $(srcdir)/missing/datalinks.c
143 dlnames.o: $(srcdir)/missing/dlnames.c
144 $(CC) $(CFLAGS) -o $@ -c $(srcdir)/missing/dlnames.c
145 getnameinfo.o: $(srcdir)/missing/getnameinfo.c
146 $(CC) $(CFLAGS) -o $@ -c $(srcdir)/missing/getnameinfo.c
147 getaddrinfo.o: $(srcdir)/missing/getaddrinfo.c
148 $(CC) $(CFLAGS) -o $@ -c $(srcdir)/missing/getaddrinfo.c
149 inet_pton.o: $(srcdir)/missing/inet_pton.c
150 $(CC) $(CFLAGS) -o $@ -c $(srcdir)/missing/inet_pton.c
151 inet_ntop.o: $(srcdir)/missing/inet_ntop.c
152 $(CC) $(CFLAGS) -o $@ -c $(srcdir)/missing/inet_ntop.c
153 inet_aton.o: $(srcdir)/missing/inet_aton.c
154 $(CC) $(CFLAGS) -o $@ -c $(srcdir)/missing/inet_aton.c
155 snprintf.o: $(srcdir)/missing/snprintf.c
156 $(CC) $(CFLAGS) -o $@ -c $(srcdir)/missing/snprintf.c
157 strlcat.o: $(srcdir)/missing/strlcat.c
158 $(CC) $(CFLAGS) -o $@ -c $(srcdir)/missing/strlcat.c
159 strlcpy.o: $(srcdir)/missing/strlcpy.c
160 $(CC) $(CFLAGS) -o $@ -c $(srcdir)/missing/strlcpy.c
161 strsep.o: $(srcdir)/missing/strsep.c
162 $(CC) $(CFLAGS) -o $@ -c $(srcdir)/missing/strsep.c
163
164 version.o: version.c
165 $(CC) $(CFLAGS) -c version.c
166
167 version.c: $(srcdir)/VERSION
168 @rm -f $@
169 if grep CVS ${srcdir}/VERSION >/dev/null; then \
170 read ver <${srcdir}/VERSION; \
171 echo $$ver | tr -d '\012'; \
172 date +_%Y_%m_%d; \
173 else \
174 cat ${srcdir}/VERSION; \
175 fi | sed -e 's/.*/char version[] = "&";/' > $@
176
177
178 install: all
179 [ -d $(DESTDIR)$(sbindir) ] || \
180 (mkdir -p $(DESTDIR)$(sbindir); chmod 755 $(DESTDIR)$(sbindir))
181 $(INSTALL_PROGRAM) $(PROG) $(DESTDIR)$(sbindir)/$(PROG)
182 $(INSTALL_PROGRAM) $(PROG) $(DESTDIR)$(sbindir)/$(PROG).`cat ${srcdir}/VERSION`
183 [ -d $(DESTDIR)$(mandir)/man1 ] || \
184 (mkdir -p $(DESTDIR)$(mandir)/man1; chmod 755 $(DESTDIR)$(mandir)/man1)
185 $(INSTALL_DATA) $(srcdir)/$(PROG).1 $(DESTDIR)$(mandir)/man1/$(PROG).1
186
187 uninstall:
188 rm -f $(DESTDIR)$(sbindir)/$(PROG)
189 rm -f $(DESTDIR)$(mandir)/man1/$(PROG).1
190
191 lint: $(GENSRC)
192 lint -hbxn $(SRC) | \
193 grep -v 'struct/union .* never defined' | \
194 grep -v 'possible pointer alignment problem'
195
196 clean:
197 rm -f $(CLEANFILES)
198
199 distclean:
200 rm -f $(CLEANFILES) Makefile config.cache config.log config.status \
201 config.h gnuc.h os-proto.h stamp-h stamp-h.in
202
203 check:
204 (cd tests && ./TESTrun.sh)
205
206 tags: $(TAGFILES)
207 ctags -wtd $(TAGFILES)
208
209 TAGS: $(TAGFILES)
210 etags $(TAGFILES)
211
212 releasetar:
213 @cwd=`pwd` ; dir=`basename $$cwd` ; name=$(PROG)-`cat VERSION` ; \
214 list="" ; make distclean; cd ..; mkdir -p n; cd n; ln -s ../$$dir $$name; \
215 tar -c -z -f $$name.tar.gz $$name/. ;
216
217 depend: $(GENSRC)
218 ${srcdir}/mkdep -c $(CC) $(DEFS) $(INCLS) $(SRC)