blob: 40c7e3299b6a9ef1e0beb7275d1035a30123c170 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# $NetBSD: Makefile,v 1.2 2020/08/03 17:23:35 christos Exp $
.include <bsd.init.mk>
PROG= host
SRCS= host.c dighost.c
BINDIR= /usr/bin
DIST=${IDIST}/bin/dig
CPPFLAGS+= -I${DIST}/include
host.o: ${VERSIONFILE}
.PATH: ${DIST} ${IDIST}/doc/man
.include <bsd.prog.mk>
|