1 # Copyright (c) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997
2 # The Regents of the University of California. All rights reserved.
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
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.
20 # @(#) $Header: /tcpdump/master/tcpdump/Makefile.in,v 1.237 2000-07-30 05:57:09 assar Exp $ (LBL)
23 # Various configurable paths (remember to edit Makefile.in, not Makefile)
28 exec_prefix = @
exec_prefix@
29 # Pathname of directory to install the binary
31 # Pathname of directory to install the man page
39 # You shouldn't need to edit anything below here.
49 CFLAGS
= $(CCOPT
) $(DEFS
) $(INCLS
)
58 INSTALL_PROGRAM
= @INSTALL_PROGRAM@
59 INSTALL_DATA
= @INSTALL_DATA@
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.
66 $(CC
) $(CFLAGS
) -c
$(srcdir)/$*.c
69 print-arp.c print-atalk.c print-atm.c print-bootp.c \
70 print-decnet.c print-domain.c print-dvmrp.c print-egp.c \
71 print-ether.c print-fddi.c print-gre.c print-icmp.c \
72 print-igrp.c print-ip.c print-ipx.c print-isoclns.c print-krb.c \
73 print-llc.c print-nfs.c print-ntp.c print-null.c print-ospf.c \
74 print-pim.c print-ppp.c print-raw.c print-rip.c print-sl.c \
75 print-snmp.c print-stp.c print-sunrpc.c print-tcp.c print-tftp.c \
76 print-udp.c print-wb.c addrtoname.c gmt2local.c machdep.c \
77 parsenfsfh.c util.c savestr.c setsignal.c \
78 print-esp.c print-ah.c print-vjc.c print-isakmp.c print-chdlc.c \
79 print-ipcomp.c print-mobile.c print-l2tp.c print-bgp.c print-rx.c \
80 print-lane.c print-cip.c print-pppoe.c print-lcp.c \
81 print-smb.c smbutil.c print-ascii.c print-telnet.c print-cnfp.c \
82 print-vrrp.c print-cdp.c print-token.c
88 SRC
= $(CSRC
) $(GENSRC
) $(LOCALSRC
)
90 # We would like to say "OBJ = $(SRC:.c=.o)" but Ultrix's make cannot
91 # hack the extra indirection
92 OBJ
= $(CSRC
:.c
=.o
) $(GENSRC
:.c
=.o
) $(LOCALSRC
:.c
=.o
) $(LIBOBJS
)
93 HDR
= addrtoname.h appletalk.h bootp.h decnet.h \
94 ethertype.h extract.h fddi.h gmt2local.h igrp.h interface.h \
95 ipx.h llc.h machdep.h mib.h nfsfh.h nfsv2.h ntp.h ospf.h \
96 savestr.c setsignal.h \
97 gnuc.h ipsec_doi.h isakmp.h l2tp.h nameser.h \
98 netbios.h oakley.h ospf6.h ppp.h route6d.h
101 /usr
/include/arpa
/tftp.h \
102 /usr
/include/net
/if_arp.h \
103 /usr
/include/net
/slip.h \
104 /usr
/include/netinet
/if_ether.h \
105 /usr
/include/netinet
/in.h \
106 /usr
/include/netinet
/ip_icmp.h \
107 /usr
/include/netinet
/tcp.h \
108 /usr
/include/netinet
/udp.h \
109 /usr
/include/protocols
/routed.h
111 TAGFILES
= $(SRC
) $(HDR
) $(TAGHDR
)
113 CLEANFILES
= $(PROG
) $(OBJ
) $(GENSRC
)
117 $(PROG
): $(OBJ
) @V_PCAPDEP@
119 $(CC
) $(CFLAGS
) $(LDFLAGS
) -o
$@
$(OBJ
) $(LIBS
)
121 getnameinfo.o
: $(srcdir)/missing
/getnameinfo.c
122 $(CC
) $(CFLAGS
) -o
$@
-c
$(srcdir)/missing
/getnameinfo.c
123 getaddrinfo.o
: $(srcdir)/missing
/getaddrinfo.c
124 $(CC
) $(CFLAGS
) -o
$@
-c
$(srcdir)/missing
/getaddrinfo.c
125 inet_pton.o
: $(srcdir)/missing
/inet_pton.c
126 $(CC
) $(CFLAGS
) -o
$@
-c
$(srcdir)/missing
/inet_pton.c
127 inet_ntop.o
: $(srcdir)/missing
/inet_ntop.c
128 $(CC
) $(CFLAGS
) -o
$@
-c
$(srcdir)/missing
/inet_ntop.c
129 inet_aton.o
: $(srcdir)/missing
/inet_aton.c
130 $(CC
) $(CFLAGS
) -o
$@
-c
$(srcdir)/missing
/inet_aton.c
131 snprintf.o
: $(srcdir)/missing
/snprintf.c
132 $(CC
) $(CFLAGS
) -o
$@
-c
$(srcdir)/missing
/snprintf.c
133 strlcat.o
: $(srcdir)/missing
/strlcat.c
134 $(CC
) $(CFLAGS
) -o
$@
-c
$(srcdir)/missing
/strlcat.c
135 strlcpy.o
: $(srcdir)/missing
/strlcpy.c
136 $(CC
) $(CFLAGS
) -o
$@
-c
$(srcdir)/missing
/strlcpy.c
139 $(CC
) $(CFLAGS
) -c version.c
141 version.c
: $(srcdir)/VERSION
143 sed
-e
's/.*/char version[] = "&";/' $(srcdir)/VERSION
> $@
146 [ -d
$(DESTDIR
)$(sbindir
) ] || mkdir
-p
$(DESTDIR
)$(sbindir
)
147 $(INSTALL_PROGRAM
) $(PROG
) $(DESTDIR
)$(sbindir
)/$(PROG
)
148 [ -d
$(DESTDIR
)$(mandir)/man1
] || mkdir
-p
$(DESTDIR
)$(mandir)/man1
149 $(INSTALL_DATA
) $(srcdir)/$(PROG
).1 $(DESTDIR
)$(mandir)/man1
/$(PROG
).1
152 rm -f
$(DESTDIR
)$(sbindir
)/$(PROG
)
153 rm -f
$(DESTDIR
)$(mandir)/man1
/$(PROG
).1
156 lint
-hbxn
$(SRC
) | \
157 grep
-v
'struct/union .* never defined' | \
158 grep
-v
'possible pointer alignment problem'
164 rm -f
$(CLEANFILES
) Makefile config.cache config.log config.status \
165 config.h gnuc.h os-proto.h stamp-h stamp-h.in
168 ctags
-wtd
$(TAGFILES
)
171 @cwd
=`pwd` ; dir=`basename $$cwd` ; name
=$(PROG
)-`cat VERSION` ; \
172 list
="" ; tar="tar chf" ; \
173 for i in
`cat FILES` ; do list
="$$list $$name/$$i" ; done
; \
175 "rm -f ../$$name; ln -s $$dir ../$$name" ; \
176 rm -f ..
/$$name; ln
-s
$$dir ..
/$$name ; \
178 "(cd .. ; $$tar - [lots of files]) | compress > /tmp/$$name.tar.Z" ; \
179 (cd ..
; $$tar - $$list) | compress
> /tmp
/$$name.
tar.Z
; \
181 "rm -f ../$$name" ; \
184 depend
: $(GENSRC
) force
185 ${srcdir}/mkdep
-c
$(CC
) $(DEFS
) $(INCLS
) $(SRC
)