1998-09-15 19:36:32 +00:00
|
|
|
# Copyright (c) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997
|
1996-08-19 20:34:12 +00:00
|
|
|
# The Regents of the University of California. All rights reserved.
|
|
|
|
#
|
|
|
|
# Redistribution and use in source and binary forms, with or without
|
|
|
|
# modification, are permitted provided that: (1) source code distributions
|
|
|
|
# retain the above copyright notice and this paragraph in its entirety, (2)
|
|
|
|
# distributions including binary code include the above copyright notice and
|
|
|
|
# this paragraph in its entirety in the documentation or other materials
|
|
|
|
# provided with the distribution, and (3) all advertising materials mentioning
|
|
|
|
# features or use of this software display the following acknowledgement:
|
|
|
|
# ``This product includes software developed by the University of California,
|
|
|
|
# Lawrence Berkeley Laboratory and its contributors.'' Neither the name of
|
|
|
|
# the University nor the names of its contributors may be used to endorse
|
|
|
|
# or promote products derived from this software without specific prior
|
|
|
|
# written permission.
|
|
|
|
# THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
|
|
|
|
# WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
|
|
|
|
# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
|
|
|
|
#
|
|
|
|
# Various configurable paths (remember to edit Makefile.in, not Makefile)
|
|
|
|
#
|
|
|
|
|
|
|
|
# Top level hierarchy
|
|
|
|
prefix = @prefix@
|
|
|
|
exec_prefix = @exec_prefix@
|
2012-05-14 08:01:48 +00:00
|
|
|
datarootdir = @datarootdir@
|
1996-08-19 20:34:12 +00:00
|
|
|
# Pathname of directory to install the binary
|
2001-04-03 07:45:48 +00:00
|
|
|
sbindir = @sbindir@
|
1996-08-19 20:34:12 +00:00
|
|
|
# Pathname of directory to install the man page
|
2001-04-03 07:45:48 +00:00
|
|
|
mandir = @mandir@
|
1996-08-19 20:34:12 +00:00
|
|
|
|
1997-05-27 02:11:31 +00:00
|
|
|
# VPATH
|
|
|
|
srcdir = @srcdir@
|
|
|
|
VPATH = @srcdir@
|
|
|
|
|
1996-08-19 20:34:12 +00:00
|
|
|
#
|
|
|
|
# You shouldn't need to edit anything below here.
|
|
|
|
#
|
|
|
|
|
|
|
|
CC = @CC@
|
2015-01-06 19:03:11 +00:00
|
|
|
AR = @AR@
|
|
|
|
MKDEP = @MKDEP@
|
1998-09-15 19:36:32 +00:00
|
|
|
PROG = tcpdump
|
1996-08-19 20:34:12 +00:00
|
|
|
CCOPT = @V_CCOPT@
|
|
|
|
INCLS = -I. @V_INCLS@
|
2005-05-29 18:17:16 +00:00
|
|
|
DEFS = @DEFS@ @CPPFLAGS@ @V_DEFS@
|
1996-08-19 20:34:12 +00:00
|
|
|
|
|
|
|
# Standard CFLAGS
|
2012-05-14 08:01:48 +00:00
|
|
|
CFLAGS = @CFLAGS@
|
|
|
|
FULL_CFLAGS = $(CCOPT) $(DEFS) $(INCLS) $(CFLAGS)
|
1996-08-19 20:34:12 +00:00
|
|
|
|
1998-09-15 19:36:32 +00:00
|
|
|
# Standard LDFLAGS
|
|
|
|
LDFLAGS = @LDFLAGS@
|
|
|
|
|
1996-08-19 20:34:12 +00:00
|
|
|
# Standard LIBS
|
|
|
|
LIBS = @LIBS@
|
|
|
|
|
|
|
|
INSTALL = @INSTALL@
|
2001-04-03 07:45:48 +00:00
|
|
|
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
|
|
|
INSTALL_DATA = @INSTALL_DATA@
|
2009-03-21 16:23:46 +00:00
|
|
|
RANLIB = @RANLIB@
|
1996-08-19 20:34:12 +00:00
|
|
|
|
2015-01-06 19:03:11 +00:00
|
|
|
DEPENDENCY_CFLAG = @DEPENDENCY_CFLAG@
|
|
|
|
|
1996-08-19 20:34:12 +00:00
|
|
|
# Explicitly define compilation rule since SunOS 4's make doesn't like gcc.
|
|
|
|
# Also, gcc does not remove the .o before forking 'as', which can be a
|
|
|
|
# problem if you don't own the file but can write to the directory.
|
|
|
|
.c.o:
|
|
|
|
@rm -f $@
|
2012-05-14 08:01:48 +00:00
|
|
|
$(CC) $(FULL_CFLAGS) -c $(srcdir)/$*.c
|
1997-05-27 02:11:31 +00:00
|
|
|
|
2015-01-06 19:03:11 +00:00
|
|
|
CSRC = setsignal.c tcpdump.c
|
|
|
|
|
|
|
|
LIBNETDISSECT_SRC=\
|
|
|
|
addrtoname.c \
|
2017-01-31 19:17:06 +00:00
|
|
|
addrtostr.c \
|
2015-01-06 19:03:11 +00:00
|
|
|
af.c \
|
2017-01-31 19:17:06 +00:00
|
|
|
ascii_strcasecmp.c \
|
2015-01-06 19:03:11 +00:00
|
|
|
checksum.c \
|
|
|
|
cpack.c \
|
|
|
|
gmpls.c \
|
|
|
|
gmt2local.c \
|
|
|
|
in_cksum.c \
|
|
|
|
ipproto.c \
|
|
|
|
l2vpn.c \
|
|
|
|
machdep.c \
|
|
|
|
nlpid.c \
|
|
|
|
oui.c \
|
|
|
|
parsenfsfh.c \
|
2017-01-31 19:17:06 +00:00
|
|
|
print.c \
|
2015-01-06 19:03:11 +00:00
|
|
|
print-802_11.c \
|
|
|
|
print-802_15_4.c \
|
|
|
|
print-ah.c \
|
|
|
|
print-ahcp.c \
|
|
|
|
print-aodv.c \
|
|
|
|
print-aoe.c \
|
|
|
|
print-ap1394.c \
|
|
|
|
print-arcnet.c \
|
|
|
|
print-arp.c \
|
|
|
|
print-ascii.c \
|
|
|
|
print-atalk.c \
|
|
|
|
print-atm.c \
|
2017-01-31 19:17:06 +00:00
|
|
|
print-babel.c \
|
2015-01-06 19:03:11 +00:00
|
|
|
print-beep.c \
|
|
|
|
print-bfd.c \
|
|
|
|
print-bgp.c \
|
|
|
|
print-bootp.c \
|
|
|
|
print-bt.c \
|
|
|
|
print-calm-fast.c \
|
|
|
|
print-carp.c \
|
|
|
|
print-cdp.c \
|
|
|
|
print-cfm.c \
|
|
|
|
print-chdlc.c \
|
|
|
|
print-cip.c \
|
|
|
|
print-cnfp.c \
|
|
|
|
print-dccp.c \
|
|
|
|
print-decnet.c \
|
2017-01-31 19:17:06 +00:00
|
|
|
print-dhcp6.c \
|
2015-01-06 19:03:11 +00:00
|
|
|
print-domain.c \
|
|
|
|
print-dtp.c \
|
|
|
|
print-dvmrp.c \
|
|
|
|
print-eap.c \
|
|
|
|
print-egp.c \
|
|
|
|
print-eigrp.c \
|
|
|
|
print-enc.c \
|
|
|
|
print-esp.c \
|
|
|
|
print-ether.c \
|
|
|
|
print-fddi.c \
|
|
|
|
print-forces.c \
|
|
|
|
print-fr.c \
|
2017-01-31 19:17:06 +00:00
|
|
|
print-frag6.c \
|
2015-07-06 02:16:08 +00:00
|
|
|
print-ftp.c \
|
|
|
|
print-geneve.c \
|
2015-01-06 19:03:11 +00:00
|
|
|
print-geonet.c \
|
|
|
|
print-gre.c \
|
2017-01-31 19:17:06 +00:00
|
|
|
print-hncp.c \
|
2015-01-06 19:03:11 +00:00
|
|
|
print-hsrp.c \
|
2015-07-06 02:16:08 +00:00
|
|
|
print-http.c \
|
2015-01-06 19:03:11 +00:00
|
|
|
print-icmp.c \
|
2017-01-31 19:17:06 +00:00
|
|
|
print-icmp6.c \
|
2015-01-06 19:03:11 +00:00
|
|
|
print-igmp.c \
|
|
|
|
print-igrp.c \
|
|
|
|
print-ip.c \
|
2015-07-06 02:16:08 +00:00
|
|
|
print-ip6.c \
|
2017-01-31 19:17:06 +00:00
|
|
|
print-ip6opts.c \
|
2015-01-06 19:03:11 +00:00
|
|
|
print-ipcomp.c \
|
|
|
|
print-ipfc.c \
|
|
|
|
print-ipnet.c \
|
|
|
|
print-ipx.c \
|
|
|
|
print-isakmp.c \
|
|
|
|
print-isoclns.c \
|
|
|
|
print-juniper.c \
|
|
|
|
print-krb.c \
|
|
|
|
print-l2tp.c \
|
|
|
|
print-lane.c \
|
|
|
|
print-ldp.c \
|
2017-01-31 19:17:06 +00:00
|
|
|
print-lisp.c \
|
2015-01-06 19:03:11 +00:00
|
|
|
print-llc.c \
|
|
|
|
print-lldp.c \
|
|
|
|
print-lmp.c \
|
|
|
|
print-loopback.c \
|
|
|
|
print-lspping.c \
|
|
|
|
print-lwapp.c \
|
|
|
|
print-lwres.c \
|
|
|
|
print-m3ua.c \
|
2017-01-31 19:17:06 +00:00
|
|
|
print-medsa.c \
|
2015-01-06 19:03:11 +00:00
|
|
|
print-mobile.c \
|
2017-01-31 19:17:06 +00:00
|
|
|
print-mobility.c \
|
2015-01-06 19:03:11 +00:00
|
|
|
print-mpcp.c \
|
|
|
|
print-mpls.c \
|
|
|
|
print-mptcp.c \
|
|
|
|
print-msdp.c \
|
|
|
|
print-msnlb.c \
|
|
|
|
print-nflog.c \
|
|
|
|
print-nfs.c \
|
2017-01-31 19:17:06 +00:00
|
|
|
print-nsh.c \
|
2015-01-06 19:03:11 +00:00
|
|
|
print-ntp.c \
|
|
|
|
print-null.c \
|
|
|
|
print-olsr.c \
|
|
|
|
print-openflow-1.0.c \
|
|
|
|
print-openflow.c \
|
|
|
|
print-ospf.c \
|
2017-01-31 19:17:06 +00:00
|
|
|
print-ospf6.c \
|
2015-01-06 19:03:11 +00:00
|
|
|
print-otv.c \
|
|
|
|
print-pgm.c \
|
|
|
|
print-pim.c \
|
|
|
|
print-pktap.c \
|
|
|
|
print-ppi.c \
|
|
|
|
print-ppp.c \
|
|
|
|
print-pppoe.c \
|
|
|
|
print-pptp.c \
|
|
|
|
print-radius.c \
|
|
|
|
print-raw.c \
|
2017-01-31 19:17:06 +00:00
|
|
|
print-resp.c \
|
2015-01-06 19:03:11 +00:00
|
|
|
print-rip.c \
|
2017-01-31 19:17:06 +00:00
|
|
|
print-ripng.c \
|
2015-01-06 19:03:11 +00:00
|
|
|
print-rpki-rtr.c \
|
|
|
|
print-rrcp.c \
|
|
|
|
print-rsvp.c \
|
2017-01-31 19:17:06 +00:00
|
|
|
print-rt6.c \
|
2015-07-06 02:16:08 +00:00
|
|
|
print-rtsp.c \
|
2015-01-06 19:03:11 +00:00
|
|
|
print-rx.c \
|
|
|
|
print-sctp.c \
|
|
|
|
print-sflow.c \
|
|
|
|
print-sip.c \
|
|
|
|
print-sl.c \
|
|
|
|
print-sll.c \
|
|
|
|
print-slow.c \
|
2015-07-06 02:16:08 +00:00
|
|
|
print-smtp.c \
|
2015-01-06 19:03:11 +00:00
|
|
|
print-snmp.c \
|
|
|
|
print-stp.c \
|
|
|
|
print-sunatm.c \
|
|
|
|
print-sunrpc.c \
|
|
|
|
print-symantec.c \
|
|
|
|
print-syslog.c \
|
|
|
|
print-tcp.c \
|
|
|
|
print-telnet.c \
|
|
|
|
print-tftp.c \
|
|
|
|
print-timed.c \
|
|
|
|
print-tipc.c \
|
|
|
|
print-token.c \
|
|
|
|
print-udld.c \
|
|
|
|
print-udp.c \
|
|
|
|
print-usb.c \
|
|
|
|
print-vjc.c \
|
|
|
|
print-vqp.c \
|
|
|
|
print-vrrp.c \
|
|
|
|
print-vtp.c \
|
|
|
|
print-vxlan.c \
|
2017-01-31 19:17:06 +00:00
|
|
|
print-vxlan-gpe.c \
|
2015-01-06 19:03:11 +00:00
|
|
|
print-wb.c \
|
|
|
|
print-zephyr.c \
|
|
|
|
print-zeromq.c \
|
2017-01-31 19:17:06 +00:00
|
|
|
netdissect.c \
|
2015-01-06 19:03:11 +00:00
|
|
|
signature.c \
|
2017-01-31 19:17:06 +00:00
|
|
|
strtoaddr.c \
|
|
|
|
util-print.c
|
2009-03-21 16:23:46 +00:00
|
|
|
|
2000-01-30 00:45:58 +00:00
|
|
|
LOCALSRC = @LOCALSRC@
|
1996-08-19 20:34:12 +00:00
|
|
|
GENSRC = version.c
|
2000-01-30 00:45:58 +00:00
|
|
|
LIBOBJS = @LIBOBJS@
|
1996-08-19 20:34:12 +00:00
|
|
|
|
2015-01-06 19:03:11 +00:00
|
|
|
LIBNETDISSECT_OBJ=$(LIBNETDISSECT_SRC:.c=.o) ${LOCALSRC:.c=.o} ${LIBOBJS}
|
|
|
|
LIBNETDISSECT=libnetdissect.a
|
|
|
|
|
|
|
|
|
2009-03-21 16:23:46 +00:00
|
|
|
SRC = $(CSRC) $(GENSRC) $(LOCALSRC) $(LIBNETDISSECT_SRC)
|
1996-08-19 20:34:12 +00:00
|
|
|
|
|
|
|
# We would like to say "OBJ = $(SRC:.c=.o)" but Ultrix's make cannot
|
|
|
|
# hack the extra indirection
|
2015-01-06 19:03:11 +00:00
|
|
|
OBJ = $(CSRC:.c=.o) $(GENSRC:.c=.o) $(LIBNETDISSECT_OBJ)
|
2009-03-21 16:23:46 +00:00
|
|
|
HDR = \
|
|
|
|
addrtoname.h \
|
2017-01-31 19:17:06 +00:00
|
|
|
addrtostr.h \
|
2009-03-21 16:23:46 +00:00
|
|
|
af.h \
|
|
|
|
ah.h \
|
|
|
|
appletalk.h \
|
2017-01-31 19:17:06 +00:00
|
|
|
ascii_strcasecmp.h \
|
2009-03-21 16:23:46 +00:00
|
|
|
atm.h \
|
|
|
|
chdlc.h \
|
|
|
|
cpack.h \
|
|
|
|
ether.h \
|
|
|
|
ethertype.h \
|
|
|
|
extract.h \
|
2017-09-18 04:10:54 +00:00
|
|
|
funcattrs.h \
|
2015-01-06 19:03:11 +00:00
|
|
|
getopt_long.h \
|
2009-03-21 16:23:46 +00:00
|
|
|
gmpls.h \
|
|
|
|
gmt2local.h \
|
|
|
|
interface.h \
|
|
|
|
ip.h \
|
|
|
|
ip6.h \
|
|
|
|
ipproto.h \
|
|
|
|
l2vpn.h \
|
|
|
|
llc.h \
|
|
|
|
machdep.h \
|
|
|
|
mib.h \
|
|
|
|
mpls.h \
|
|
|
|
nameser.h \
|
|
|
|
netdissect.h \
|
|
|
|
nfs.h \
|
|
|
|
nfsfh.h \
|
|
|
|
nlpid.h \
|
2015-01-06 19:03:11 +00:00
|
|
|
openflow.h \
|
2009-03-21 16:23:46 +00:00
|
|
|
ospf.h \
|
|
|
|
oui.h \
|
|
|
|
pcap-missing.h \
|
|
|
|
ppp.h \
|
2017-01-31 19:17:06 +00:00
|
|
|
print.h \
|
2009-03-21 16:23:46 +00:00
|
|
|
rpc_auth.h \
|
|
|
|
rpc_msg.h \
|
2015-01-06 19:03:11 +00:00
|
|
|
rpl.h \
|
2002-06-21 00:43:23 +00:00
|
|
|
setsignal.h \
|
2010-10-28 16:23:25 +00:00
|
|
|
signature.h \
|
2009-03-21 16:23:46 +00:00
|
|
|
slcompress.h \
|
|
|
|
smb.h \
|
2017-01-31 19:17:06 +00:00
|
|
|
strtoaddr.h \
|
2009-03-21 16:23:46 +00:00
|
|
|
tcp.h \
|
2017-01-31 19:17:06 +00:00
|
|
|
netdissect-stdinc.h \
|
|
|
|
timeval-operations.h \
|
2009-03-21 16:23:46 +00:00
|
|
|
udp.h
|
1996-08-19 20:34:12 +00:00
|
|
|
|
|
|
|
TAGHDR = \
|
|
|
|
/usr/include/arpa/tftp.h \
|
1997-05-27 02:11:31 +00:00
|
|
|
/usr/include/net/if_arp.h \
|
1996-08-19 20:34:12 +00:00
|
|
|
/usr/include/netinet/if_ether.h \
|
|
|
|
/usr/include/netinet/in.h \
|
|
|
|
/usr/include/netinet/ip_icmp.h \
|
|
|
|
/usr/include/netinet/tcp.h \
|
|
|
|
/usr/include/netinet/udp.h \
|
|
|
|
/usr/include/protocols/routed.h
|
|
|
|
|
|
|
|
TAGFILES = $(SRC) $(HDR) $(TAGHDR)
|
|
|
|
|
1998-09-15 19:36:32 +00:00
|
|
|
CLEANFILES = $(PROG) $(OBJ) $(GENSRC)
|
|
|
|
|
2009-03-21 16:23:46 +00:00
|
|
|
EXTRA_DIST = \
|
|
|
|
CHANGES \
|
2017-01-31 19:17:06 +00:00
|
|
|
CONTRIBUTING \
|
2009-03-21 16:23:46 +00:00
|
|
|
CREDITS \
|
|
|
|
INSTALL.txt \
|
|
|
|
LICENSE \
|
|
|
|
Makefile.in \
|
2010-10-28 16:23:25 +00:00
|
|
|
Makefile-devel-adds \
|
2017-01-31 19:17:06 +00:00
|
|
|
PLATFORMS \
|
|
|
|
README \
|
2015-01-06 19:03:11 +00:00
|
|
|
README.md \
|
2009-03-21 16:23:46 +00:00
|
|
|
Readme.Win32 \
|
|
|
|
VERSION \
|
|
|
|
aclocal.m4 \
|
|
|
|
atime.awk \
|
|
|
|
bpf_dump.c \
|
|
|
|
config.guess \
|
|
|
|
config.h.in \
|
|
|
|
config.sub \
|
|
|
|
configure \
|
2019-10-06 04:36:53 +00:00
|
|
|
configure.ac \
|
2009-03-21 16:23:46 +00:00
|
|
|
install-sh \
|
|
|
|
lbl/os-osf4.h \
|
|
|
|
lbl/os-solaris2.h \
|
|
|
|
lbl/os-sunos4.h \
|
|
|
|
lbl/os-ultrix4.h \
|
|
|
|
makemib \
|
|
|
|
missing/dlnames.c \
|
|
|
|
missing/datalinks.c \
|
2015-01-06 19:03:11 +00:00
|
|
|
missing/getopt_long.c \
|
2009-03-21 16:23:46 +00:00
|
|
|
missing/snprintf.c \
|
|
|
|
missing/strdup.c \
|
|
|
|
missing/strlcat.c \
|
|
|
|
missing/strlcpy.c \
|
|
|
|
missing/strsep.c \
|
|
|
|
mkdep \
|
|
|
|
packetdat.awk \
|
|
|
|
pcap_dump_ftell.c \
|
|
|
|
print-pflog.c \
|
|
|
|
print-smb.c \
|
|
|
|
send-ack.awk \
|
|
|
|
smbutil.c \
|
|
|
|
stime.awk \
|
2010-10-28 16:23:25 +00:00
|
|
|
tcpdump.1.in \
|
2009-03-21 16:23:46 +00:00
|
|
|
vfprintf.c \
|
|
|
|
win32/prj/GNUmakefile \
|
|
|
|
win32/prj/WinDump.dsp \
|
2017-01-31 19:17:06 +00:00
|
|
|
win32/prj/WinDump.dsw \
|
|
|
|
win32/prj/WinDump.sln \
|
|
|
|
win32/prj/WinDump.vcproj \
|
|
|
|
win32/src/ether_ntohost.c
|
2009-03-21 16:23:46 +00:00
|
|
|
|
2019-10-06 04:36:53 +00:00
|
|
|
TEST_DIST= `git ls-files tests | grep -v 'tests/\..*'`
|
2013-05-30 06:46:26 +00:00
|
|
|
|
2015-01-06 19:03:11 +00:00
|
|
|
all: $(PROG) $(LIBNETDISSECT)
|
1996-08-19 20:34:12 +00:00
|
|
|
|
1998-09-15 19:36:32 +00:00
|
|
|
$(PROG): $(OBJ) @V_PCAPDEP@
|
1996-08-19 20:34:12 +00:00
|
|
|
@rm -f $@
|
2012-05-14 08:01:48 +00:00
|
|
|
$(CC) $(FULL_CFLAGS) $(LDFLAGS) -o $@ $(OBJ) $(LIBS)
|
1996-08-19 20:34:12 +00:00
|
|
|
|
2009-03-21 16:23:46 +00:00
|
|
|
$(LIBNETDISSECT): $(LIBNETDISSECT_OBJ)
|
|
|
|
@rm -f $@
|
2015-01-06 19:03:11 +00:00
|
|
|
$(AR) cr $@ $(LIBNETDISSECT_OBJ)
|
2009-03-21 16:23:46 +00:00
|
|
|
$(RANLIB) $@
|
|
|
|
|
2004-03-31 09:17:26 +00:00
|
|
|
datalinks.o: $(srcdir)/missing/datalinks.c
|
2012-05-14 08:01:48 +00:00
|
|
|
$(CC) $(FULL_CFLAGS) -o $@ -c $(srcdir)/missing/datalinks.c
|
2004-03-31 09:17:26 +00:00
|
|
|
dlnames.o: $(srcdir)/missing/dlnames.c
|
2012-05-14 08:01:48 +00:00
|
|
|
$(CC) $(FULL_CFLAGS) -o $@ -c $(srcdir)/missing/dlnames.c
|
2015-01-06 19:03:11 +00:00
|
|
|
getopt_long.o: $(srcdir)/missing/getopt_long.c
|
|
|
|
$(CC) $(FULL_CFLAGS) -o $@ -c $(srcdir)/missing/getopt_long.c
|
2001-04-03 07:45:48 +00:00
|
|
|
snprintf.o: $(srcdir)/missing/snprintf.c
|
2012-05-14 08:01:48 +00:00
|
|
|
$(CC) $(FULL_CFLAGS) -o $@ -c $(srcdir)/missing/snprintf.c
|
2015-01-06 19:03:11 +00:00
|
|
|
strdup.o: $(srcdir)/missing/strdup.c
|
|
|
|
$(CC) $(FULL_CFLAGS) -o $@ -c $(srcdir)/missing/strdup.c
|
2001-04-03 07:45:48 +00:00
|
|
|
strlcat.o: $(srcdir)/missing/strlcat.c
|
2012-05-14 08:01:48 +00:00
|
|
|
$(CC) $(FULL_CFLAGS) -o $@ -c $(srcdir)/missing/strlcat.c
|
2001-04-03 07:45:48 +00:00
|
|
|
strlcpy.o: $(srcdir)/missing/strlcpy.c
|
2012-05-14 08:01:48 +00:00
|
|
|
$(CC) $(FULL_CFLAGS) -o $@ -c $(srcdir)/missing/strlcpy.c
|
2004-03-31 09:17:26 +00:00
|
|
|
strsep.o: $(srcdir)/missing/strsep.c
|
2012-05-14 08:01:48 +00:00
|
|
|
$(CC) $(FULL_CFLAGS) -o $@ -c $(srcdir)/missing/strsep.c
|
2000-01-30 00:45:58 +00:00
|
|
|
|
1996-08-19 20:34:12 +00:00
|
|
|
version.o: version.c
|
2012-05-14 08:01:48 +00:00
|
|
|
$(CC) $(FULL_CFLAGS) -c version.c
|
2000-01-30 00:45:58 +00:00
|
|
|
|
1997-05-27 02:11:31 +00:00
|
|
|
version.c: $(srcdir)/VERSION
|
1996-08-19 20:34:12 +00:00
|
|
|
@rm -f $@
|
2010-10-28 16:23:25 +00:00
|
|
|
if grep GIT ${srcdir}/VERSION >/dev/null; then \
|
2009-03-21 16:23:46 +00:00
|
|
|
read ver <${srcdir}/VERSION; \
|
|
|
|
echo $$ver | tr -d '\012'; \
|
|
|
|
date +_%Y_%m_%d; \
|
|
|
|
else \
|
|
|
|
cat ${srcdir}/VERSION; \
|
2010-10-28 16:23:25 +00:00
|
|
|
fi | sed -e 's/.*/const char version[] = "&";/' > $@
|
1996-08-19 20:34:12 +00:00
|
|
|
|
2009-03-21 16:23:46 +00:00
|
|
|
install: all
|
2001-04-03 07:45:48 +00:00
|
|
|
[ -d $(DESTDIR)$(sbindir) ] || \
|
|
|
|
(mkdir -p $(DESTDIR)$(sbindir); chmod 755 $(DESTDIR)$(sbindir))
|
|
|
|
$(INSTALL_PROGRAM) $(PROG) $(DESTDIR)$(sbindir)/$(PROG)
|
2009-03-21 16:23:46 +00:00
|
|
|
$(INSTALL_PROGRAM) $(PROG) $(DESTDIR)$(sbindir)/$(PROG).`cat ${srcdir}/VERSION`
|
2001-04-03 07:45:48 +00:00
|
|
|
[ -d $(DESTDIR)$(mandir)/man1 ] || \
|
|
|
|
(mkdir -p $(DESTDIR)$(mandir)/man1; chmod 755 $(DESTDIR)$(mandir)/man1)
|
2010-10-28 16:23:25 +00:00
|
|
|
$(INSTALL_DATA) $(PROG).1 $(DESTDIR)$(mandir)/man1/$(PROG).1
|
1996-08-19 20:34:12 +00:00
|
|
|
|
2001-04-03 07:45:48 +00:00
|
|
|
uninstall:
|
|
|
|
rm -f $(DESTDIR)$(sbindir)/$(PROG)
|
|
|
|
rm -f $(DESTDIR)$(mandir)/man1/$(PROG).1
|
1996-08-19 20:34:12 +00:00
|
|
|
|
2001-04-03 07:45:48 +00:00
|
|
|
lint: $(GENSRC)
|
1996-08-19 20:34:12 +00:00
|
|
|
lint -hbxn $(SRC) | \
|
|
|
|
grep -v 'struct/union .* never defined' | \
|
|
|
|
grep -v 'possible pointer alignment problem'
|
|
|
|
|
|
|
|
clean:
|
2010-10-28 16:23:25 +00:00
|
|
|
rm -f $(CLEANFILES) $(PROG)-`cat VERSION`.tar.gz
|
1996-08-19 20:34:12 +00:00
|
|
|
|
|
|
|
distclean:
|
|
|
|
rm -f $(CLEANFILES) Makefile config.cache config.log config.status \
|
2015-01-06 19:03:11 +00:00
|
|
|
config.h gnuc.h os-proto.h stamp-h stamp-h.in $(PROG).1 \
|
|
|
|
libnetdissect.a tests/.failed tests/.passed \
|
|
|
|
tests/failure-outputs.txt
|
|
|
|
rm -rf autom4te.cache tests/DIFF tests/NEW
|
2010-10-28 16:23:25 +00:00
|
|
|
|
|
|
|
check: tcpdump
|
2019-10-06 04:36:53 +00:00
|
|
|
(mkdir -p tests && SRCDIR=`cd ${srcdir}; pwd` && export SRCDIR && $$SRCDIR/tests/TESTrun.sh )
|
1996-08-19 20:34:12 +00:00
|
|
|
|
2017-01-31 19:17:06 +00:00
|
|
|
extags: $(TAGFILES)
|
|
|
|
ctags $(TAGFILES)
|
|
|
|
|
1998-09-15 19:36:32 +00:00
|
|
|
tags: $(TAGFILES)
|
1996-08-19 20:34:12 +00:00
|
|
|
ctags -wtd $(TAGFILES)
|
|
|
|
|
2009-03-21 16:23:46 +00:00
|
|
|
TAGS: $(TAGFILES)
|
|
|
|
etags $(TAGFILES)
|
|
|
|
|
2007-10-16 02:20:42 +00:00
|
|
|
releasetar:
|
1998-09-15 19:36:32 +00:00
|
|
|
@cwd=`pwd` ; dir=`basename $$cwd` ; name=$(PROG)-`cat VERSION` ; \
|
2009-03-21 16:23:46 +00:00
|
|
|
mkdir $$name; \
|
2013-05-30 06:46:26 +00:00
|
|
|
tar cf - $(CSRC) $(HDR) $(LIBNETDISSECT_SRC) $(EXTRA_DIST) $(TEST_DIST) | (cd $$name; tar xf -); \
|
2009-03-21 16:23:46 +00:00
|
|
|
tar -c -z -f $$name.tar.gz $$name; \
|
|
|
|
rm -rf $$name
|
1996-08-19 20:34:12 +00:00
|
|
|
|
2013-05-30 06:46:26 +00:00
|
|
|
testlist:
|
|
|
|
echo $(TEST_DIST)
|
|
|
|
|
2001-04-03 07:45:48 +00:00
|
|
|
depend: $(GENSRC)
|
2015-01-06 19:03:11 +00:00
|
|
|
$(MKDEP) -c $(CC) -m $(DEPENDENCY_CFLAG) $(DEFS) $(INCLS) $(SRC)
|