
Also known as ISC bind. This import adds utilities such as host(1), dig(1), and nslookup(1), as well as many other tools and libraries. Change-Id: I035ca46e64f1965d57019e773f4ff0ef035e4aa3
20 lines
334 B
Makefile
20 lines
334 B
Makefile
# $NetBSD: Makefile.inc,v 1.1 2011/09/11 18:55:24 christos Exp $
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
.include "${.CURDIR}/../../Makefile.inc"
|
|
|
|
TOOLS=${IDIST}/bin/tools
|
|
|
|
.PATH: ${TOOLS}
|
|
|
|
PROG=${BASE}
|
|
SRCS=${BASE}.c
|
|
.if exists(${TOOLS}/${BASE}.8)
|
|
BINDIR=/usr/sbin
|
|
MAN=${BASE}.8
|
|
.elif exists(${TOOLS}/${BASE}.1)
|
|
BINDIR=/usr/bin
|
|
MAN=${BASE}.1
|
|
.endif
|