summaryrefslogtreecommitdiffstats
path: root/lib/libpcap/Makefile
blob: 1d40b7df19b879a6e487e8affdc68fe03e88d83f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# 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>
OpenPOWER on IntegriCloud