1995-01-20 04:13:07 +00:00
|
|
|
# Makefile for libpcap
|
1999-08-28 00:22:10 +00:00
|
|
|
# $FreeBSD$
|
1995-01-20 04:13:07 +00:00
|
|
|
|
|
|
|
LIB= pcap
|
1998-05-08 06:43:07 +00:00
|
|
|
SRCS= grammar.y tokdefs.h pcap-bpf.c \
|
2001-04-03 04:34:50 +00:00
|
|
|
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
|
2001-03-27 17:27:19 +00:00
|
|
|
MAN= pcap.3
|
1998-12-27 15:04:33 +00:00
|
|
|
CLEANFILES=tokdefs.h version.c
|
1996-08-19 21:01:37 +00:00
|
|
|
|
2001-04-03 10:08:51 +00:00
|
|
|
CFLAGS+=-DHAVE_CONFIG_H -Dyylval=pcap_lval -I${.CURDIR} -I.
|
2000-04-15 20:45:52 +00:00
|
|
|
.if !defined(NOINET6)
|
2001-04-03 10:08:51 +00:00
|
|
|
CFLAGS+=-DINET6
|
2000-04-15 20:45:52 +00:00
|
|
|
.endif
|
1996-08-19 21:01:37 +00:00
|
|
|
|
1996-08-20 05:43:51 +00:00
|
|
|
SHLIB_MAJOR=2
|
2001-04-03 04:34:50 +00:00
|
|
|
SHLIB_MINOR=5
|
1996-08-20 05:43:51 +00:00
|
|
|
|
1996-08-19 21:01:37 +00:00
|
|
|
#
|
|
|
|
# Magic to grab sources out of src/contrib
|
|
|
|
#
|
1996-08-21 16:50:15 +00:00
|
|
|
PCAP_DISTDIR?=${.CURDIR}/../../contrib/libpcap
|
2001-07-31 23:27:06 +00:00
|
|
|
CFLAGS+=-I${PCAP_DISTDIR}
|
1996-08-21 16:50:15 +00:00
|
|
|
.PATH: ${PCAP_DISTDIR}
|
|
|
|
.PATH: ${PCAP_DISTDIR}/bpf/net
|
1995-01-20 04:13:07 +00:00
|
|
|
|
1998-09-15 19:34:01 +00:00
|
|
|
version.c: ${PCAP_DISTDIR}/VERSION
|
|
|
|
@rm -f $@
|
|
|
|
sed 's/.*/char pcap_version[] = "&";/' ${PCAP_DISTDIR}/VERSION > $@
|
|
|
|
|
1995-01-20 04:13:07 +00:00
|
|
|
beforeinstall:
|
1997-10-10 11:55:42 +00:00
|
|
|
.for i in pcap.h pcap-int.h pcap-namedb.h
|
1996-08-30 01:59:46 +00:00
|
|
|
${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 ${PCAP_DISTDIR}/$i \
|
|
|
|
${DESTDIR}/usr/include
|
|
|
|
.endfor
|
1995-01-20 04:13:07 +00:00
|
|
|
|
1998-05-08 06:43:07 +00:00
|
|
|
tokdefs.h: grammar.h
|
|
|
|
ln -sf grammar.h tokdefs.h
|
1995-01-20 04:13:07 +00:00
|
|
|
|
|
|
|
.include <bsd.lib.mk>
|