1998-09-15 19:36:32 +00:00
|
|
|
# Copyright (c) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997
|
2023-05-10 15:02:34 +00:00
|
|
|
# The Regents of the University of California. All rights reserved.
|
1996-08-19 20:34:12 +00:00
|
|
|
#
|
|
|
|
# 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
|
2023-05-10 15:02:34 +00:00
|
|
|
bindir = @bindir@
|
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@
|
2023-05-10 15:02:34 +00:00
|
|
|
top_srcdir = @top_srcdir@
|
1997-05-27 02:11:31 +00:00
|
|
|
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
|
|
|
|
2023-05-10 15:02:34 +00:00
|
|
|
CSRC = fptype.c tcpdump.c
|
2015-01-06 19:03:11 +00:00
|
|
|
|
|
|
|
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 \
|
|
|
|
in_cksum.c \
|
|
|
|
ipproto.c \
|
|
|
|
l2vpn.c \
|
|
|
|
machdep.c \
|
2023-05-10 15:02:34 +00:00
|
|
|
netdissect.c \
|
|
|
|
netdissect-alloc.c \
|
2015-01-06 19:03:11 +00:00
|
|
|
nlpid.c \
|
2023-05-10 15:02:34 +00:00
|
|
|
ntp.c \
|
2015-01-06 19:03:11 +00:00
|
|
|
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 \
|
2023-05-10 15:02:34 +00:00
|
|
|
print-arista.c \
|
2015-01-06 19:03:11 +00:00
|
|
|
print-arp.c \
|
|
|
|
print-ascii.c \
|
|
|
|
print-atalk.c \
|
|
|
|
print-atm.c \
|
2017-01-31 19:17:06 +00:00
|
|
|
print-babel.c \
|
2023-05-10 15:02:34 +00:00
|
|
|
print-bcm-li.c \
|
2015-01-06 19:03:11 +00:00
|
|
|
print-beep.c \
|
|
|
|
print-bfd.c \
|
|
|
|
print-bgp.c \
|
|
|
|
print-bootp.c \
|
2023-05-10 15:02:34 +00:00
|
|
|
print-brcmtag.c \
|
2015-01-06 19:03:11 +00:00
|
|
|
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 \
|
2023-05-10 15:02:34 +00:00
|
|
|
print-dsa.c \
|
2015-01-06 19:03:11 +00:00
|
|
|
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 \
|
2023-05-10 15:02:34 +00:00
|
|
|
print-ip-demux.c \
|
2015-01-06 19:03:11 +00:00
|
|
|
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 \
|
2023-05-10 15:02:34 +00:00
|
|
|
print-ipoib.c \
|
2015-01-06 19:03:11 +00:00
|
|
|
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 \
|
2023-05-10 15:02:34 +00:00
|
|
|
print-macsec.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 \
|
2023-05-10 15:02:34 +00:00
|
|
|
print-openflow-1.3.c \
|
2015-01-06 19:03:11 +00:00
|
|
|
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 \
|
2023-05-10 15:02:34 +00:00
|
|
|
print-pflog.c \
|
2015-01-06 19:03:11 +00:00
|
|
|
print-pgm.c \
|
|
|
|
print-pim.c \
|
|
|
|
print-pktap.c \
|
|
|
|
print-ppi.c \
|
|
|
|
print-ppp.c \
|
|
|
|
print-pppoe.c \
|
|
|
|
print-pptp.c \
|
2023-05-10 15:02:34 +00:00
|
|
|
print-ptp.c \
|
2015-01-06 19:03:11 +00:00
|
|
|
print-radius.c \
|
|
|
|
print-raw.c \
|
2023-05-10 15:02:34 +00:00
|
|
|
print-realtek.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-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 \
|
2023-05-10 15:02:34 +00:00
|
|
|
print-someip.c \
|
|
|
|
print-ssh.c \
|
2015-01-06 19:03:11 +00:00
|
|
|
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 \
|
2023-05-10 15:02:34 +00:00
|
|
|
print-unsupported.c \
|
2015-01-06 19:03:11 +00:00
|
|
|
print-usb.c \
|
|
|
|
print-vjc.c \
|
|
|
|
print-vqp.c \
|
|
|
|
print-vrrp.c \
|
2023-05-10 15:02:34 +00:00
|
|
|
print-vsock.c \
|
2015-01-06 19:03:11 +00:00
|
|
|
print-vtp.c \
|
2017-01-31 19:17:06 +00:00
|
|
|
print-vxlan-gpe.c \
|
2023-05-10 15:02:34 +00:00
|
|
|
print-vxlan.c \
|
2015-01-06 19:03:11 +00:00
|
|
|
print-wb.c \
|
2023-05-10 15:02:34 +00:00
|
|
|
print-whois.c \
|
|
|
|
print-zep.c \
|
2015-01-06 19:03:11 +00:00
|
|
|
print-zephyr.c \
|
|
|
|
print-zeromq.c \
|
|
|
|
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@
|
|
|
|
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
|
|
|
|
|
|
|
|
|
2023-05-10 15:02:34 +00:00
|
|
|
SRC = $(CSRC) $(LOCALSRC)
|
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
|
2023-05-10 15:02:34 +00:00
|
|
|
OBJ = $(CSRC:.c=.o)
|
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 \
|
2023-05-10 15:02:34 +00:00
|
|
|
compiler-tests.h \
|
2009-03-21 16:23:46 +00:00
|
|
|
cpack.h \
|
2023-05-10 15:02:34 +00:00
|
|
|
diag-control.h \
|
2009-03-21 16:23:46 +00:00
|
|
|
ethertype.h \
|
|
|
|
extract.h \
|
2023-05-10 15:02:34 +00:00
|
|
|
fptype.h \
|
|
|
|
ftmacros.h \
|
2017-09-18 04:10:54 +00:00
|
|
|
funcattrs.h \
|
2023-05-10 15:02:34 +00:00
|
|
|
getservent.h \
|
2009-03-21 16:23:46 +00:00
|
|
|
gmpls.h \
|
|
|
|
interface.h \
|
|
|
|
ip.h \
|
|
|
|
ip6.h \
|
|
|
|
ipproto.h \
|
|
|
|
l2vpn.h \
|
|
|
|
llc.h \
|
|
|
|
machdep.h \
|
|
|
|
mib.h \
|
|
|
|
mpls.h \
|
|
|
|
nameser.h \
|
|
|
|
netdissect.h \
|
2023-05-10 15:02:34 +00:00
|
|
|
netdissect-alloc.h \
|
|
|
|
netdissect-ctype.h \
|
|
|
|
netdissect-stdinc.h \
|
2009-03-21 16:23:46 +00:00
|
|
|
nfs.h \
|
|
|
|
nfsfh.h \
|
|
|
|
nlpid.h \
|
2023-05-10 15:02:34 +00:00
|
|
|
ntp.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 \
|
2023-05-10 15:02:34 +00:00
|
|
|
pflog.h \
|
2009-03-21 16:23:46 +00:00
|
|
|
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 \
|
2010-10-28 16:23:25 +00:00
|
|
|
signature.h \
|
2009-03-21 16:23:46 +00:00
|
|
|
slcompress.h \
|
|
|
|
smb.h \
|
2023-05-10 15:02:34 +00:00
|
|
|
status-exit-codes.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
|
|
|
timeval-operations.h \
|
2023-05-10 15:02:34 +00:00
|
|
|
udp.h \
|
|
|
|
varattrs.h
|
1996-08-19 20:34:12 +00:00
|
|
|
|
|
|
|
TAGHDR = \
|
|
|
|
/usr/include/netinet/if_ether.h \
|
2023-05-10 15:02:34 +00:00
|
|
|
/usr/include/netinet/in.h
|
1996-08-19 20:34:12 +00:00
|
|
|
|
2023-05-10 15:02:34 +00:00
|
|
|
TAGFILES = $(SRC) $(HDR) $(TAGHDR) $(LIBNETDISSECT_SRC) \
|
|
|
|
print-smb.c smbutil.c
|
1996-08-19 20:34:12 +00:00
|
|
|
|
2023-05-10 15:02:34 +00:00
|
|
|
CLEANFILES = $(PROG) $(OBJ) $(LIBNETDISSECT_OBJ) print-smb.o smbutil.o
|
1998-09-15 19:36:32 +00:00
|
|
|
|
2009-03-21 16:23:46 +00:00
|
|
|
EXTRA_DIST = \
|
|
|
|
CHANGES \
|
2023-05-10 15:02:34 +00:00
|
|
|
CMakeLists.txt \
|
|
|
|
CONTRIBUTING.md \
|
2009-03-21 16:23:46 +00:00
|
|
|
CREDITS \
|
2023-05-10 15:02:34 +00:00
|
|
|
INSTALL.md \
|
2009-03-21 16:23:46 +00:00
|
|
|
LICENSE \
|
2010-10-28 16:23:25 +00:00
|
|
|
Makefile-devel-adds \
|
2023-05-10 15:02:34 +00:00
|
|
|
Makefile.in \
|
2015-01-06 19:03:11 +00:00
|
|
|
README.md \
|
2009-03-21 16:23:46 +00:00
|
|
|
VERSION \
|
|
|
|
aclocal.m4 \
|
|
|
|
atime.awk \
|
|
|
|
bpf_dump.c \
|
2023-05-10 15:02:34 +00:00
|
|
|
cmake/Modules/FindCRYPTO.cmake \
|
|
|
|
cmake/Modules/FindPCAP.cmake \
|
|
|
|
cmake/Modules/FindSMI.cmake \
|
|
|
|
cmake_uninstall.cmake.in \
|
|
|
|
cmakeconfig.h.in \
|
2009-03-21 16:23:46 +00:00
|
|
|
config.guess \
|
|
|
|
config.h.in \
|
|
|
|
config.sub \
|
|
|
|
configure \
|
2019-10-06 04:36:53 +00:00
|
|
|
configure.ac \
|
2023-05-10 15:02:34 +00:00
|
|
|
doc/README.aix.md \
|
|
|
|
doc/README.NetBSD.md \
|
|
|
|
doc/README.solaris.md \
|
|
|
|
doc/README.Win32.md \
|
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/datalinks.c \
|
2023-05-10 15:02:34 +00:00
|
|
|
missing/dlnames.c \
|
2015-01-06 19:03:11 +00:00
|
|
|
missing/getopt_long.c \
|
2023-05-10 15:02:34 +00:00
|
|
|
missing/getopt_long.h \
|
|
|
|
missing/getservent.c \
|
|
|
|
missing/pcap_dump_ftell.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 \
|
|
|
|
print-smb.c \
|
|
|
|
send-ack.awk \
|
|
|
|
smbutil.c \
|
|
|
|
stime.awk \
|
2023-05-10 15:02:34 +00:00
|
|
|
tcpdump.1.in
|
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
|
|
|
|
2023-05-10 15:02:34 +00:00
|
|
|
RELEASE_FILES = $(CSRC) $(HDR) $(LIBNETDISSECT_SRC) $(EXTRA_DIST) $(TEST_DIST)
|
|
|
|
|
|
|
|
all: $(PROG)
|
1996-08-19 20:34:12 +00:00
|
|
|
|
2023-05-10 15:02:34 +00:00
|
|
|
$(PROG): $(OBJ) @V_PCAPDEP@ $(LIBNETDISSECT)
|
1996-08-19 20:34:12 +00:00
|
|
|
@rm -f $@
|
2023-05-10 15:02:34 +00:00
|
|
|
$(CC) $(FULL_CFLAGS) $(LDFLAGS) -o $@ $(OBJ) $(LIBNETDISSECT) $(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
|
2023-05-10 15:02:34 +00:00
|
|
|
getservent.o: $(srcdir)/missing/getservent.c
|
|
|
|
$(CC) $(FULL_CFLAGS) -o $@ -c $(srcdir)/missing/getservent.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
|
2023-05-10 15:02:34 +00:00
|
|
|
pcap_dump_ftell.o: $(srcdir)/missing/pcap_dump_ftell.c
|
|
|
|
$(CC) $(FULL_CFLAGS) -o $@ -c $(srcdir)/missing/pcap_dump_ftell.c
|
1996-08-19 20:34:12 +00:00
|
|
|
|
2009-03-21 16:23:46 +00:00
|
|
|
install: all
|
2023-05-10 15:02:34 +00:00
|
|
|
[ -d $(DESTDIR)$(bindir) ] || \
|
|
|
|
(mkdir -p $(DESTDIR)$(bindir); chmod 755 $(DESTDIR)$(bindir))
|
|
|
|
$(INSTALL_PROGRAM) $(PROG) $(DESTDIR)$(bindir)/$(PROG)
|
|
|
|
$(INSTALL_PROGRAM) $(PROG) $(DESTDIR)$(bindir)/$(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:
|
2023-05-10 15:02:34 +00:00
|
|
|
rm -f $(DESTDIR)$(bindir)/$(PROG)
|
|
|
|
rm -f $(DESTDIR)$(bindir)/$(PROG).`cat ${srcdir}/VERSION`
|
2001-04-03 07:45:48 +00:00
|
|
|
rm -f $(DESTDIR)$(mandir)/man1/$(PROG).1
|
1996-08-19 20:34:12 +00:00
|
|
|
|
2023-05-10 15:02:34 +00:00
|
|
|
lint:
|
|
|
|
lint -hbxn $(SRC) $(LIBNETDISSECT_SRC) | \
|
1996-08-19 20:34:12 +00:00
|
|
|
grep -v 'struct/union .* never defined' | \
|
|
|
|
grep -v 'possible pointer alignment problem'
|
|
|
|
|
|
|
|
clean:
|
2023-05-10 15:02:34 +00:00
|
|
|
rm -f $(CLEANFILES) $(PROG)-`cat ${srcdir}/VERSION`.tar.gz
|
1996-08-19 20:34:12 +00:00
|
|
|
|
|
|
|
distclean:
|
|
|
|
rm -f $(CLEANFILES) Makefile config.cache config.log config.status \
|
2023-05-10 15:02:34 +00:00
|
|
|
config.h os-proto.h stamp-h stamp-h.in $(PROG).1 \
|
2015-01-06 19:03:11 +00:00
|
|
|
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
|
2023-05-10 15:02:34 +00:00
|
|
|
$(srcdir)/tests/TESTrun
|
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:
|
2023-05-10 15:02:34 +00:00
|
|
|
@TAG=$(PROG)-`cat VERSION` && \
|
|
|
|
if git show-ref --tags --quiet --verify -- "refs/tags/$$TAG"; then \
|
|
|
|
git archive --prefix="$$TAG"/ -o "$$TAG".tar.gz "$$TAG" \
|
|
|
|
$(RELEASE_FILES) && \
|
|
|
|
echo "Archive build from tag $$TAG."; \
|
|
|
|
else \
|
|
|
|
git archive --prefix="$$TAG"/ -o "$$TAG".tar.gz HEAD \
|
|
|
|
$(RELEASE_FILES) && \
|
|
|
|
echo "No $$TAG tag. Archive build from HEAD."; \
|
|
|
|
fi
|
|
|
|
|
|
|
|
releasecheck: releasetar
|
|
|
|
@TAG=$(PROG)-`cat VERSION` && \
|
|
|
|
INSTALL_DIR=/tmp/install_"$$TAG"_$$$$ && \
|
|
|
|
DIR=`pwd` && \
|
|
|
|
cd /tmp && \
|
|
|
|
rm -rf "$$TAG" && \
|
|
|
|
rm -rf "$$INSTALL_DIR" && \
|
|
|
|
tar xf "$$DIR"/"$$TAG".tar.gz && \
|
|
|
|
cd "$$TAG" && \
|
|
|
|
echo "[$@] $$ ./configure --enable-smb --quiet --prefix=$$INSTALL_DIR" && \
|
|
|
|
./configure --enable-smb --quiet --prefix="$$INSTALL_DIR" && \
|
|
|
|
echo '[$@] $$ make -s all check' && \
|
|
|
|
make -s all check >/dev/null && \
|
|
|
|
echo '[$@] $$ make -s install' && \
|
|
|
|
make -s install && \
|
|
|
|
cd .. && \
|
|
|
|
rm -rf "$$TAG" && \
|
|
|
|
rm -rf "$$INSTALL_DIR" && \
|
|
|
|
tar xf "$$DIR"/"$$TAG".tar.gz && \
|
|
|
|
cd "$$TAG" && \
|
|
|
|
mkdir build && \
|
|
|
|
cd build && \
|
|
|
|
echo '[$@] $$ cmake -DENABLE_SMB=yes [...] ..' && \
|
|
|
|
cmake -DENABLE_SMB=yes \
|
|
|
|
-DCMAKE_INSTALL_PREFIX="$$INSTALL_DIR" \
|
|
|
|
-DCMAKE_MESSAGE_LOG_LEVEL=NOTICE \
|
|
|
|
-DCMAKE_RULE_MESSAGES=OFF \
|
|
|
|
-DCMAKE_INSTALL_MESSAGE=NEVER \
|
|
|
|
.. && \
|
|
|
|
echo '[$@] $$ make -s all check' && \
|
|
|
|
make -s all check >/dev/null && \
|
|
|
|
echo '[$@] $$ make -s install' && \
|
|
|
|
make -s install && \
|
|
|
|
cd ../.. && \
|
|
|
|
rm -rf "$$TAG" && \
|
|
|
|
rm -rf "$$INSTALL_DIR" && \
|
|
|
|
echo '[$@] Done.'
|
|
|
|
|
|
|
|
whitespacecheck:
|
|
|
|
@# trailing space(s)?
|
|
|
|
@if git grep -I -n ' $$' $$(git ls-files|grep -v '^tests/'); then \
|
|
|
|
echo 'Error: Trailing space(s).'; \
|
|
|
|
exit 1; \
|
|
|
|
fi
|
|
|
|
@# trailing tab(s)?
|
|
|
|
@# install-sh has a tab at the end of one line
|
|
|
|
@if git grep -I -n ' $$' $$(git ls-files|grep -vE '^(tests/|install-sh$$)'); then \
|
|
|
|
echo 'Error: Trailing tabs(s).'; \
|
|
|
|
exit 1; \
|
|
|
|
fi
|
|
|
|
@# space(s) before tab(s)?
|
|
|
|
@if git grep -I -n '[ ][ ]' $$(git ls-files|grep -v '^tests/'); then \
|
|
|
|
echo 'Error: space(s) before tab(s).'; \
|
|
|
|
exit 1; \
|
|
|
|
fi
|
1996-08-19 20:34:12 +00:00
|
|
|
|
2013-05-30 06:46:26 +00:00
|
|
|
testlist:
|
|
|
|
echo $(TEST_DIST)
|
|
|
|
|
2023-05-10 15:02:34 +00:00
|
|
|
depend:
|
|
|
|
$(MKDEP) -c "$(CC)" -m "$(DEPENDENCY_CFLAG)" -s "$(srcdir)" $(DEFS) $(INCLS) $(SRC) $(LIBNETDISSECT_SRC)
|
|
|
|
|
|
|
|
shellcheck:
|
|
|
|
shellcheck -f gcc -e SC2006 build.sh build_matrix.sh build_common.sh
|