Edit

IABSD.fr/src/lib/libpcap/Makefile

Branch :

  • Show log

    Commit

  • Author : jmc
    Date : 2019-09-25 16:59:00
    Hash : 3d4db9bf
    Message : mdoc version of pcap-filter; conversion suggested by deraadt, as well as renaming from section 7 to section 5; ok deraadt

  • lib/libpcap/Makefile
  • #	$OpenBSD: Makefile,v 1.29 2019/09/25 16:59:00 jmc Exp $
    #	$NetBSD: Makefile,v 1.3 1996/05/10 21:54:24 cgd Exp $
    
    LIB=	pcap
    MAN=	pcap_open_live.3 pcap-filter.5
    
    DEFS=	-DHAVE_SYS_IOCCOM_H -DHAVE_SYS_SOCKIO_H -DHAVE_ETHER_HOSTTON \
    	-DHAVE_STRERROR -DHAVE_SOCKADDR_SA_LEN -DLBL_ALIGN -DHAVE_IFADDRS_H \
    	-DINET6 -DHAVE_BSD_IEEE80211
    
    CFLAGS+=-I. -I${.CURDIR} -Dyylval=pcap_yylval ${DEFS}
    
    HDRS=	pcap.h pcap-namedb.h
    SRCS=	pcap.c inet.c gencode.c optimize.c nametoaddr.c etherent.c \
    	savefile.c bpf_filter.c bpf_image.c grammar.y scanner.l \
    	pcap-bpf.c version.c fad-getad.c
    .PATH:	${.CURDIR}/../../sys/net
    
    YFLAGS = -ppcap_yy -d
    LFLAGS = -Ppcap_yy
    
    CLEANFILES+= version.c
    
    version.c: ${.CURDIR}/VERSION
    	@rm -f $@
    	sed 's/.*/char pcap_version[] = "&";/' ${.CURDIR}/VERSION > $@
    
    includes:
    	@cd ${.CURDIR}; for i in $(HDRS); do \
    	    j="cmp -s $$i ${DESTDIR}/usr/include/$$i || \
    		${INSTALL} ${INSTALL_COPY} -o ${BINOWN} -g ${BINGRP} -m 444 $$i \
    		${DESTDIR}/usr/include"; \
    	    echo $$j; \
    	    eval "$$j"; \
    	done
    
    .include <bsd.lib.mk>