pkgsrc/net/netbsd-tap/files/Makefile
cube 0c09c0588f o Add a way to pass special definitions to the compilation, to match kernel
environment, and document it in DESCR by lack of a better place.
o Fix a reference to local in (yet unused) bl3.mk file.

Both issues reported by Hubert Feyrer.
2005-02-20 21:50:57 +00:00

26 lines
563 B
Makefile

# $NetBSD: Makefile,v 1.2 2005/02/20 21:50:57 cube Exp $
SRCS= if_tap_lkm.c if_tap.c if_tap_stub.c
KMOD= tap
WARNS= 3
INCSDIR= ${PREFIX}/include/net
INCS= if_tap.h
KMODDIR= ${PREFIX}/lkm
MANDIR= ${PREFIX}/man
.if defined(USE_BPF) && !empty(USE_BPF:M[Yy][Ee][Ss])
CPPFLAGS+= -DNBPFILTER=1
.endif
.if defined(TAP_KERNEL_ENV) && !empty(TAP_KERNEL_ENV)
CPPFLAGS+= ${TAP_KERNEL_ENV}
.endif
install: install-postinstall
install-postinstall:
${BSD_INSTALL_SCRIPT} tap_postinstall.sh ${PREFIX}/sbin/tap_postinstall
.include <bsd.kinc.mk>
.include <bsd.kmod.mk>