]> The Tcpdump Group git mirrors - tcpdump/blob - Makefile.in
Include code to handle OpenBSD DLT_PFLOG files, based on the OpenBSD
[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.261 2002-02-05 10:07:39 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@
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
61 # Explicitly define compilation rule since SunOS 4's make doesn't like gcc.
62 # Also, gcc does not remove the .o before forking 'as', which can be a
63 # problem if you don't own the file but can write to the directory.
64 .c.o:
65 @rm -f $@
66 $(CC) $(CFLAGS) -c $(srcdir)/$*.c
67
68 CSRC = addrtoname.c gmt2local.c machdep.c parsenfsfh.c \
69 print-802_11.c print-ah.c print-arcnet.c print-arp.c \
70 print-ascii.c print-atalk.c print-atm.c print-bgp.c \
71 print-bootp.c print-beep.c print-cdp.c print-chdlc.c \
72 print-cip.c print-cnfp.c print-decnet.c print-domain.c \
73 print-dvmrp.c print-egp.c print-esp.c print-ether.c \
74 print-fddi.c print-gre.c print-hsrp.c print-icmp.c \
75 print-igmp.c print-igrp.c print-ip.c print-ipcomp.c \
76 print-ipx.c print-isakmp.c print-isoclns.c print-krb.c \
77 print-l2tp.c print-lane.c print-lcp.c print-llc.c print-lwres.c \
78 print-msdp.c print-mobile.c print-mpls.c print-nfs.c \
79 print-ntp.c print-null.c print-ospf.c print-pflog.c \
80 print-pim.c print-ppp.c print-pppoe.c print-pptp.c \
81 print-radius.c print-raw.c print-rip.c print-rx.c \
82 print-sctp.c print-sl.c print-sll.c print-snmp.c \
83 print-stp.c print-sunrpc.c print-tcp.c \
84 print-telnet.c print-tftp.c print-timed.c print-token.c \
85 print-udp.c print-vjc.c print-vrrp.c print-wb.c print-zephyr.c \
86 setsignal.c tcpdump.c util.c
87
88 LOCALSRC = @LOCALSRC@
89 GENSRC = version.c
90 LIBOBJS = @LIBOBJS@
91
92 SRC = $(CSRC) $(GENSRC) $(LOCALSRC)
93
94 # We would like to say "OBJ = $(SRC:.c=.o)" but Ultrix's make cannot
95 # hack the extra indirection
96 OBJ = $(CSRC:.c=.o) $(GENSRC:.c=.o) $(LOCALSRC:.c=.o) $(LIBOBJS)
97 HDR = addrtoname.h appletalk.h bootp.h decnet.h \
98 ethertype.h extract.h fddi.h gmt2local.h igrp.h interface.h \
99 ipx.h llc.h machdep.h mib.h nfsfh.h nfsv2.h ntp.h ospf.h \
100 setsignal.h \
101 gnuc.h ipsec_doi.h isakmp.h l2tp.h nameser.h \
102 netbios.h oakley.h ospf6.h ppp.h route6d.h
103
104 TAGHDR = \
105 /usr/include/arpa/tftp.h \
106 /usr/include/net/if_arp.h \
107 /usr/include/net/slip.h \
108 /usr/include/netinet/if_ether.h \
109 /usr/include/netinet/in.h \
110 /usr/include/netinet/ip_icmp.h \
111 /usr/include/netinet/tcp.h \
112 /usr/include/netinet/udp.h \
113 /usr/include/protocols/routed.h
114
115 TAGFILES = $(SRC) $(HDR) $(TAGHDR)
116
117 CLEANFILES = $(PROG) $(OBJ) $(GENSRC)
118
119 all: $(PROG)
120
121 $(PROG): $(OBJ) @V_PCAPDEP@
122 @rm -f $@
123 $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(OBJ) $(LIBS)
124
125 getnameinfo.o: $(srcdir)/missing/getnameinfo.c
126 $(CC) $(CFLAGS) -o $@ -c $(srcdir)/missing/getnameinfo.c
127 getaddrinfo.o: $(srcdir)/missing/getaddrinfo.c
128 $(CC) $(CFLAGS) -o $@ -c $(srcdir)/missing/getaddrinfo.c
129 inet_pton.o: $(srcdir)/missing/inet_pton.c
130 $(CC) $(CFLAGS) -o $@ -c $(srcdir)/missing/inet_pton.c
131 inet_ntop.o: $(srcdir)/missing/inet_ntop.c
132 $(CC) $(CFLAGS) -o $@ -c $(srcdir)/missing/inet_ntop.c
133 inet_aton.o: $(srcdir)/missing/inet_aton.c
134 $(CC) $(CFLAGS) -o $@ -c $(srcdir)/missing/inet_aton.c
135 snprintf.o: $(srcdir)/missing/snprintf.c
136 $(CC) $(CFLAGS) -o $@ -c $(srcdir)/missing/snprintf.c
137 strlcat.o: $(srcdir)/missing/strlcat.c
138 $(CC) $(CFLAGS) -o $@ -c $(srcdir)/missing/strlcat.c
139 strlcpy.o: $(srcdir)/missing/strlcpy.c
140 $(CC) $(CFLAGS) -o $@ -c $(srcdir)/missing/strlcpy.c
141
142 version.o: version.c
143 $(CC) $(CFLAGS) -c version.c
144
145 version.c: $(srcdir)/VERSION
146 @rm -f $@
147 sed -e 's/.*/char version[] = "&";/' $(srcdir)/VERSION > $@
148
149 install:
150 [ -d $(DESTDIR)$(sbindir) ] || \
151 (mkdir -p $(DESTDIR)$(sbindir); chmod 755 $(DESTDIR)$(sbindir))
152 $(INSTALL_PROGRAM) $(PROG) $(DESTDIR)$(sbindir)/$(PROG)
153 [ -d $(DESTDIR)$(mandir)/man1 ] || \
154 (mkdir -p $(DESTDIR)$(mandir)/man1; chmod 755 $(DESTDIR)$(mandir)/man1)
155 $(INSTALL_DATA) $(srcdir)/$(PROG).1 $(DESTDIR)$(mandir)/man1/$(PROG).1
156
157 uninstall:
158 rm -f $(DESTDIR)$(sbindir)/$(PROG)
159 rm -f $(DESTDIR)$(mandir)/man1/$(PROG).1
160
161 lint: $(GENSRC)
162 lint -hbxn $(SRC) | \
163 grep -v 'struct/union .* never defined' | \
164 grep -v 'possible pointer alignment problem'
165
166 clean:
167 rm -f $(CLEANFILES)
168
169 distclean:
170 rm -f $(CLEANFILES) Makefile config.cache config.log config.status \
171 config.h gnuc.h os-proto.h stamp-h stamp-h.in
172
173 tags: $(TAGFILES)
174 ctags -wtd $(TAGFILES)
175
176 tar:
177 @cwd=`pwd` ; dir=`basename $$cwd` ; name=$(PROG)-`cat VERSION` ; \
178 list="" ; tar="tar chf" ; \
179 for i in `cat FILES` ; do list="$$list $$name/$$i" ; done; \
180 echo \
181 "rm -f ../$$name; ln -s $$dir ../$$name" ; \
182 rm -f ../$$name; ln -s $$dir ../$$name ; \
183 echo \
184 "(cd .. ; $$tar - [lots of files]) | compress > /tmp/$$name.tar.Z" ; \
185 (cd .. ; $$tar - $$list) | compress > /tmp/$$name.tar.Z ; \
186 echo \
187 "rm -f ../$$name" ; \
188 rm -f ../$$name
189
190 depend: $(GENSRC)
191 ${srcdir}/mkdep -c $(CC) $(DEFS) $(INCLS) $(SRC)