]> The Tcpdump Group git mirrors - tcpdump/blob - Makefile.in
add print-ascii.c and print-telnet.c from netbsd.
[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.219 1999-12-22 15:44:09 itojun 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 BINDEST = @sbindir@
31 # Pathname of directory to install the man page
32 MANDEST = @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
59 # Explicitly define compilation rule since SunOS 4's make doesn't like gcc.
60 # Also, gcc does not remove the .o before forking 'as', which can be a
61 # problem if you don't own the file but can write to the directory.
62 .c.o:
63 @rm -f $@
64 $(CC) $(CFLAGS) -c $(srcdir)/$*.c
65
66 CSRC = tcpdump.c \
67 print-arp.c print-atalk.c print-atm.c print-bootp.c \
68 print-decnet.c print-domain.c print-dvmrp.c print-egp.c \
69 print-ether.c print-fddi.c print-gre.c print-icmp.c \
70 print-igrp.c print-ip.c print-ipx.c print-isoclns.c print-krb.c \
71 print-llc.c print-nfs.c print-ntp.c print-null.c print-ospf.c \
72 print-pim.c print-ppp.c print-raw.c print-rip.c print-sl.c \
73 print-snmp.c print-sunrpc.c print-tcp.c print-tftp.c print-udp.c \
74 print-wb.c addrtoname.c bpf_dump.c gmt2local.c machdep.c \
75 parsenfsfh.c util.c savestr.c setsignal.c \
76 print-esp.c print-ah.c print-vjc.c print-isakmp.c print-chdlc.c \
77 print-ipcomp.c print-mobile.c print-l2tp.c print-bgp.c print-rx.c \
78 print-lane.c print-cip.c print-pppoe.c print-lcp.c \
79 print-smb.c smbutil.c print-ascii.c print-telnet.c
80 LOCALSRC = @LOCALSRC@
81 GENSRC = version.c
82 LIBOBJS = @LIBOBJS@
83
84 SRC = $(CSRC) $(GENSRC) $(LOCALSRC)
85
86 # We would like to say "OBJ = $(SRC:.c=.o)" but Ultrix's make cannot
87 # hack the extra indirection
88 OBJ = $(CSRC:.c=.o) $(GENSRC:.c=.o) $(LOCALSRC:.c=.o) @LIBOBJS@
89 HDR = addrtoname.h appletalk.h bootp.h decnet.h \
90 ethertype.h extract.h fddi.h gmt2local.h igrp.h interface.h \
91 ipx.h llc.h machdep.h mib.h nfsfh.h nfsv2.h ntp.h ospf.h \
92 savestr.c setsignal.h \
93 gnuc.h ipsec_doi.h isakmp.h l2tp.h netbios.h oakley.h ospf6.h ppp.h \
94 route6d.h
95
96 TAGHDR = \
97 /usr/include/arpa/tftp.h \
98 /usr/include/net/if_arp.h \
99 /usr/include/net/slip.h \
100 /usr/include/netinet/if_ether.h \
101 /usr/include/netinet/in.h \
102 /usr/include/netinet/ip_icmp.h \
103 /usr/include/netinet/tcp.h \
104 /usr/include/netinet/udp.h \
105 /usr/include/protocols/routed.h
106
107 TAGFILES = $(SRC) $(HDR) $(TAGHDR)
108
109 CLEANFILES = $(PROG) $(OBJ) $(GENSRC)
110
111 all: $(PROG)
112
113 $(PROG): $(OBJ) @V_PCAPDEP@
114 @rm -f $@
115 $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(OBJ) $(LIBS)
116
117 getnameinfo.o: $(srcdir)/missing/getnameinfo.c
118 $(CC) $(CFLAGS) -o $@ -c $(srcdir)/missing/getnameinfo.c
119 getaddrinfo.o: $(srcdir)/missing/getaddrinfo.c
120 $(CC) $(CFLAGS) -o $@ -c $(srcdir)/missing/getaddrinfo.c
121 inet_pton.o: $(srcdir)/missing/inet_pton.c
122 $(CC) $(CFLAGS) -o $@ -c $(srcdir)/missing/inet_pton.c
123 inet_ntop.o: $(srcdir)/missing/inet_ntop.c
124 $(CC) $(CFLAGS) -o $@ -c $(srcdir)/missing/inet_ntop.c
125 inet_aton.o: $(srcdir)/missing/inet_aton.c
126 $(CC) $(CFLAGS) -o $@ -c $(srcdir)/missing/inet_aton.c
127
128 version.o: version.c
129 $(CC) $(CFLAGS) -c version.c
130
131 version.c: $(srcdir)/VERSION
132 @rm -f $@
133 sed -e 's/.*/char version[] = "&";/' $(srcdir)/VERSION > $@
134
135 install: force
136 [ -d $(DESTDIR)$(BINDEST) ] || mkdir -p $(DESTDIR)$(BINDEST)
137 $(INSTALL) -m 550 -o bin -g @V_GROUP@ $(PROG) \
138 $(DESTDIR)$(BINDEST)/$(PROG)
139
140 install-man: force
141 [ -d $(DESTDIR)$(MANDEST)/man1 ] || mkdir -p $(DESTDIR)$(MANDEST)/man1
142 $(INSTALL) -m 444 -o bin -g bin $(srcdir)/$(PROG).1 \
143 $(DESTDIR)$(MANDEST)/man1/$(PROG).1
144
145 lint: $(GENSRC) force
146 lint -hbxn $(SRC) | \
147 grep -v 'struct/union .* never defined' | \
148 grep -v 'possible pointer alignment problem'
149
150 clean:
151 rm -f $(CLEANFILES)
152
153 distclean:
154 rm -f $(CLEANFILES) Makefile config.cache config.log config.status \
155 config.h gnuc.h os-proto.h
156
157 tags: $(TAGFILES)
158 ctags -wtd $(TAGFILES)
159
160 tar: force
161 @cwd=`pwd` ; dir=`basename $$cwd` ; name=$(PROG)-`cat VERSION` ; \
162 list="" ; tar="tar chFFf" ; \
163 for i in `cat FILES` ; do list="$$list $$name/$$i" ; done; \
164 echo \
165 "rm -f ../$$name; ln -s $$dir ../$$name" ; \
166 rm -f ../$$name; ln -s $$dir ../$$name ; \
167 echo \
168 "(cd .. ; $$tar - [lots of files]) | compress > /tmp/$$name.tar.Z" ; \
169 (cd .. ; $$tar - $$list) | compress > /tmp/$$name.tar.Z ; \
170 echo \
171 "rm -f ../$$name" ; \
172 rm -f ../$$name
173
174 force: /tmp
175 depend: $(GENSRC) force
176 ./mkdep -c $(CC) $(DEFS) $(INCLS) $(SRC)