OSDN Git Service

2013.10.24
[uclinux-h8/uClinux-dist.git] / user / 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.293.2.2 2005/07/10 14:47:56 hannes 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
61 CSRC =  addrtoname.c cpack.c gmpls.c oui.c gmt2local.c ipproto.c \
62         nlpid.c l2vpn.c machdep.c parsenfsfh.c \
63         print-802_11.c print-ap1394.c print-ah.c print-arcnet.c \
64         print-aodv.c print-arp.c print-ascii.c print-atalk.c print-atm.c \
65         print-beep.c print-bfd.c print-bgp.c print-bootp.c print-cdp.c \
66         print-chdlc.c print-cip.c print-cnfp.c print-decnet.c \
67         print-domain.c print-dvmrp.c print-enc.c print-egp.c \
68         print-eap.c print-eigrp.c\
69         print-esp.c print-ether.c print-fddi.c print-fr.c \
70         print-gre.c print-hsrp.c print-icmp.c print-igmp.c \
71         print-igrp.c print-ip.c print-ipcomp.c print-ipfc.c \
72         print-ipx.c print-isakmp.c print-isoclns.c print-juniper.c print-krb.c \
73         print-l2tp.c print-lane.c print-ldp.c print-llc.c \
74         print-lmp.c print-lspping.c \
75         print-lwres.c print-mobile.c print-mpls.c print-msdp.c \
76         print-nfs.c print-ntp.c print-null.c print-ospf.c \
77         print-pflog.c print-pgm.c print-pim.c print-ppp.c print-pppoe.c \
78         print-pptp.c print-radius.c print-raw.c print-rip.c \
79         print-rsvp.c print-rx.c print-sctp.c print-sip.c print-sl.c print-sll.c \
80         print-slow.c print-snmp.c print-stp.c print-sunatm.c print-sunrpc.c \
81         print-symantec.c print-syslog.c print-tcp.c print-telnet.c print-tftp.c \
82         print-timed.c print-token.c print-udp.c print-vjc.c print-vrrp.c \
83         print-wb.c print-zephyr.c setsignal.c tcpdump.c util.c
84
85 LOCALSRC = @LOCALSRC@
86 GENSRC = version.c
87 LIBOBJS = @LIBOBJS@
88
89 SRC =   $(CSRC) $(GENSRC) $(LOCALSRC)
90
91 # We would like to say "OBJ = $(SRC:.c=.o)" but Ultrix's make cannot
92 # hack the extra indirection
93 OBJ =   $(CSRC:.c=.o) $(GENSRC:.c=.o) $(LOCALSRC:.c=.o) $(LIBOBJS)
94 HDR =   addrtoname.h appletalk.h bootp.h cpack.h decnet.h \
95         ethertype.h extract.h fddi.h gmt2local.h igrp.h interface.h \
96         ipx.h llc.h machdep.h mib.h nfsfh.h nfsv2.h ntp.h ospf.h \
97         setsignal.h \
98         gnuc.h ipsec_doi.h isakmp.h l2tp.h nameser.h \
99         netbios.h oakley.h ospf6.h pf.h ppp.h route6d.h
100
101 TAGHDR = \
102         /usr/include/arpa/tftp.h \
103         /usr/include/net/if_arp.h \
104         /usr/include/net/slip.h \
105         /usr/include/netinet/if_ether.h \
106         /usr/include/netinet/in.h \
107         /usr/include/netinet/ip_icmp.h \
108         /usr/include/netinet/tcp.h \
109         /usr/include/netinet/udp.h \
110         /usr/include/protocols/routed.h
111
112 TAGFILES = $(SRC) $(HDR) $(TAGHDR)
113
114 CLEANFILES = $(PROG) tcpdump.o $(OBJ) $(GENSRC)
115
116 all: $(PROG)
117
118 $(PROG): tcpdump.o libtcpdump.a @V_PCAPDEP@
119         @rm -f $@
120         $(CC) $(CFLAGS) $(LDFLAGS) -o $@ tcpdump.o libtcpdump.a $(LIBS)
121
122 libtcpdump.a: $(OBJ)
123         @rm -f $@
124         $(AR) rc $@ $(OBJ)
125
126 datalinks.o: $(srcdir)/missing/datalinks.c
127         $(CC) $(CFLAGS) -o $@ -c $(srcdir)/missing/datalinks.c
128 dlnames.o: $(srcdir)/missing/dlnames.c
129         $(CC) $(CFLAGS) -o $@ -c $(srcdir)/missing/dlnames.c
130 getnameinfo.o: $(srcdir)/missing/getnameinfo.c
131         $(CC) $(CFLAGS) -o $@ -c $(srcdir)/missing/getnameinfo.c
132 getaddrinfo.o: $(srcdir)/missing/getaddrinfo.c
133         $(CC) $(CFLAGS) -o $@ -c $(srcdir)/missing/getaddrinfo.c
134 inet_pton.o: $(srcdir)/missing/inet_pton.c
135         $(CC) $(CFLAGS) -o $@ -c $(srcdir)/missing/inet_pton.c
136 inet_ntop.o: $(srcdir)/missing/inet_ntop.c
137         $(CC) $(CFLAGS) -o $@ -c $(srcdir)/missing/inet_ntop.c
138 inet_aton.o: $(srcdir)/missing/inet_aton.c
139         $(CC) $(CFLAGS) -o $@ -c $(srcdir)/missing/inet_aton.c
140 snprintf.o: $(srcdir)/missing/snprintf.c
141         $(CC) $(CFLAGS) -o $@ -c $(srcdir)/missing/snprintf.c
142 strlcat.o: $(srcdir)/missing/strlcat.c
143         $(CC) $(CFLAGS) -o $@ -c $(srcdir)/missing/strlcat.c
144 strlcpy.o: $(srcdir)/missing/strlcpy.c
145         $(CC) $(CFLAGS) -o $@ -c $(srcdir)/missing/strlcpy.c
146 strsep.o: $(srcdir)/missing/strsep.c
147         $(CC) $(CFLAGS) -o $@ -c $(srcdir)/missing/strsep.c
148
149 version.o: version.c
150         $(CC) $(CFLAGS) -c version.c
151
152 version.c: $(srcdir)/VERSION
153         @rm -f $@
154         sed -e 's/.*/char version[] = "&";/' $(srcdir)/VERSION > $@
155
156 install:
157         [ -d $(DESTDIR)$(sbindir) ] || \
158             (mkdir -p $(DESTDIR)$(sbindir); chmod 755 $(DESTDIR)$(sbindir))
159         $(INSTALL_PROGRAM) $(PROG) $(DESTDIR)$(sbindir)/$(PROG)
160         [ -d $(DESTDIR)$(mandir)/man1 ] || \
161             (mkdir -p $(DESTDIR)$(mandir)/man1; chmod 755 $(DESTDIR)$(mandir)/man1)
162         $(INSTALL_DATA) $(srcdir)/$(PROG).1 $(DESTDIR)$(mandir)/man1/$(PROG).1
163
164 uninstall:
165         rm -f $(DESTDIR)$(sbindir)/$(PROG)
166         rm -f $(DESTDIR)$(mandir)/man1/$(PROG).1
167
168 lint: $(GENSRC)
169         lint -hbxn $(SRC) | \
170             grep -v 'struct/union .* never defined' | \
171             grep -v 'possible pointer alignment problem'
172
173 clean:
174         rm -f $(CLEANFILES)
175
176 distclean:
177         rm -f $(CLEANFILES) Makefile config.cache config.log config.status \
178             config.h gnuc.h os-proto.h stamp-h stamp-h.in
179
180 tags: $(TAGFILES)
181         ctags -wtd $(TAGFILES)
182
183 tar:
184         @cwd=`pwd` ; dir=`basename $$cwd` ; name=$(PROG)-`cat VERSION` ; \
185             list="" ; tar="tar chf" ; \
186             for i in `cat FILES` ; do list="$$list $$name/$$i" ; done; \
187             echo \
188             "rm -f ../$$name; ln -s $$dir ../$$name" ; \
189              rm -f ../$$name; ln -s $$dir ../$$name ; \
190             echo \
191             "(cd .. ; $$tar - [lots of files]) | compress > /tmp/$$name.tar.Z" ; \
192              (cd .. ; $$tar - $$list) | compress > /tmp/$$name.tar.Z ; \
193             echo \
194             "rm -f ../$$name" ; \
195              rm -f ../$$name
196
197 depend: $(GENSRC)
198         ${srcdir}/mkdep -c $(CC) $(DEFS) $(INCLS) $(SRC)