9f6ca50ce7
for multiple packages at the same time.
44 lines
1.2 KiB
Makefile
44 lines
1.2 KiB
Makefile
# Makefile for libpcap
|
|
# $Id: Makefile,v 1.10 1996/08/20 05:43:51 pst Exp $
|
|
|
|
LIB= pcap
|
|
SRCS= pcap-bpf.c \
|
|
pcap.c inet.c gencode.c optimize.c nametoaddr.c \
|
|
etherent.c savefile.c bpf_filter.c bpf_image.c \
|
|
grammar.y scanner.l
|
|
MAN3= pcap.3
|
|
CLEANFILES+= lex.yy.c tokdefs.h grammar.c scanner.c
|
|
|
|
DEFS= -DHAVE_SYS_IOCCOM_H=1 -DHAVE_SYS_SOCKIO_H=1 \
|
|
-DHAVE_ETHER_HOSTTON=1 -DHAVE_STRERROR=1 \
|
|
-DHAVE_SOCKADDR_SA_LEN=1 -DLBL_ALIGN=1
|
|
|
|
CFLAGS+=-Wall -I. -I${.CURDIR} -Dyylval=pcap_lval -Dlint ${DEFS}
|
|
|
|
SHLIB_MAJOR=2
|
|
SHLIB_MINOR=1
|
|
|
|
#
|
|
# Magic to grab sources out of src/contrib
|
|
#
|
|
PCAP_DISTDIR?=${.CURDIR}/../../contrib/libpcap
|
|
CFLAGS+=-I${PCAP_DISTDIR} -I${PCAP_DISTDIR}/lbl
|
|
.PATH: ${PCAP_DISTDIR}
|
|
.PATH: ${PCAP_DISTDIR}/bpf/net
|
|
|
|
beforeinstall:
|
|
-cmp -s ${PCAP_DISTDIR}/pcap.h ${DESTDIR}/usr/include/pcap.h || \
|
|
( $(INSTALL) -c -o ${BINOWN} -g ${BINGRP} -m 444 \
|
|
${PCAP_DISTDIR}/pcap.h ${DESTDIR}/usr/include; )
|
|
-cmp -s ${PCAP_DISTDIR}/pcap-namedb.h ${DESTDIR}/usr/include/pcap-namedb.h || \
|
|
( $(INSTALL) -c -o ${BINOWN} -g ${BINGRP} -m 444 \
|
|
${PCAP_DISTDIR}/pcap-namedb.h ${DESTDIR}/usr/include; )
|
|
|
|
|
|
scanner.o: tokdefs.h
|
|
|
|
tokdefs.h: grammar.c
|
|
mv -f y.tab.h tokdefs.h
|
|
|
|
.include <bsd.lib.mk>
|