
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
18 lines
309 B
Makefile
18 lines
309 B
Makefile
# $NetBSD: Makefile,v 1.2 2014/07/08 19:08:43 martin Exp $
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
PROG= delv
|
|
SRCS= delv.c
|
|
BINDIR= /usr/bin
|
|
|
|
.include "${.CURDIR}/../Makefile.inc"
|
|
|
|
DIST=${IDIST}/bin/delv
|
|
CPPFLAGS+= -I${DIST}/include -I${IDIST}/lib/irs/include
|
|
LDADD+= -lirs -lisccfg
|
|
|
|
.PATH: ${DIST}
|
|
|
|
.include <bsd.prog.mk>
|