
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
17 lines
265 B
Makefile
17 lines
265 B
Makefile
# $NetBSD: Makefile,v 1.1 2009/04/12 03:46:05 christos Exp $
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
PROG= dig
|
|
SRCS= dig.c dighost.c
|
|
BINDIR= /usr/bin
|
|
|
|
.include "${.CURDIR}/../Makefile.inc"
|
|
|
|
DIST=${IDIST}/bin/dig
|
|
CPPFLAGS+= -I${DIST}/include
|
|
|
|
.PATH: ${DIST}
|
|
|
|
.include <bsd.prog.mk>
|