3267cc18e1
tcpdump -y ieee802_11 will work in the basic senses, including the code compilation for filters (where you may specify "link[]" to refer to parts of the 802.11 header, as well as treat it like a normal Ethernet header). Previously, it was just too far off to do anything useful for us. * While I'm here, fix some compile problems that will result from lex and yacc namespace polution when linking with -lpcap. The namespace is now "pcapyy*" instead of "yy*", and it tests fine with world and some external applications that may or may not use "yy*".
38 lines
823 B
Makefile
38 lines
823 B
Makefile
# Makefile for libpcap
|
|
# $FreeBSD$
|
|
|
|
LIB= pcap
|
|
SRCS= grammar.y tokdefs.h pcap-bpf.c \
|
|
pcap.c inet.c gencode.c optimize.c nametoaddr.c \
|
|
etherent.c savefile.c bpf_filter.c bpf_image.c bpf_dump.c \
|
|
scanner.l version.c
|
|
INCS= pcap.h pcap-int.h pcap-namedb.h
|
|
MAN= pcap.3
|
|
CLEANFILES=tokdefs.h version.c
|
|
|
|
YFLAGS+=-p pcapyy
|
|
LFLAGS+=-Ppcapyy
|
|
CFLAGS+=-DHAVE_CONFIG_H -Dyylval=pcapyylval -I${.CURDIR} -I.
|
|
.if !defined(NOINET6)
|
|
CFLAGS+=-DINET6
|
|
.endif
|
|
|
|
SHLIB_MAJOR=2
|
|
|
|
#
|
|
# Magic to grab sources out of src/contrib
|
|
#
|
|
PCAP_DISTDIR?=${.CURDIR}/../../contrib/libpcap
|
|
CFLAGS+=-I${PCAP_DISTDIR}
|
|
.PATH: ${PCAP_DISTDIR}
|
|
.PATH: ${PCAP_DISTDIR}/bpf/net
|
|
|
|
version.c: ${PCAP_DISTDIR}/VERSION
|
|
@rm -f $@
|
|
sed 's/.*/char pcap_version[] = "&";/' ${PCAP_DISTDIR}/VERSION > $@
|
|
|
|
tokdefs.h: grammar.h
|
|
ln -sf grammar.h tokdefs.h
|
|
|
|
.include <bsd.lib.mk>
|