blob: c16b9a6dfbdc93288c54d6ecd74d1cd087e28fc7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# $NetBSD: Makefile,v 1.2 1996/03/31 13:55:34 mrg Exp $
# from: $Id: Makefile,v 8.1 1994/12/15 06:23:45 vixie Exp
.PATH: ${.CURDIR}/../nslookup \
${.CURDIR}/../man \
${.CURDIR}/../../../lib/libc/net
PROG= dig
SRCS= dig.c list.c subr.c debug.c send.c gethostnamadr.c res_init.c \
res_mkquery.c res_query.c res_send.c
CFLAGS+= -I${.CURDIR}/.. -DDEBUG
.include <bsd.prog.mk>
.include "../../Makefile.inc"
|