32 lines
877 B
Makefile
32 lines
877 B
Makefile
# Makefile for libpcap
|
|
# $Id: Makefile,v 1.3 1995/02/23 18:47:06 ache 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
|
|
|
|
CLEANFILES+= lex.yy.c tokdefs.h grammar.c scanner.c
|
|
# CFLAGS+=-Wall -I. -I${.CURDIR} -DFDDI -Dyylval=pcap_lval
|
|
CFLAGS+=-DFDDI -I. -I${.CURDIR}
|
|
MAN3= pcap.3
|
|
|
|
beforeinstall:
|
|
-cmp -s ${.CURDIR}/pcap.h ${DESTDIR}/usr/include/pcap.h || \
|
|
( $(INSTALL) -c -o ${BINOWN} -g ${BINGRP} -m 444 \
|
|
${.CURDIR}/pcap.h ${DESTDIR}/usr/include; )
|
|
-cmp -s ${.CURDIR}/pcap-namedb.h ${DESTDIR}/usr/include/pcap-namedb.h || \
|
|
( $(INSTALL) -c -o ${BINOWN} -g ${BINGRP} -m 444 \
|
|
${.CURDIR}/pcap-namedb.h ${DESTDIR}/usr/include; )
|
|
|
|
scanner.o: tokdefs.h
|
|
|
|
tokdefs.h: grammar.c
|
|
mv y.tab.h tokdefs.h
|
|
|
|
|
|
.include <bsd.lib.mk>
|