1#	@(#)Makefile	5.23 (Berkeley) 6/24/90
2
3PROG=	nslookup
4NONSTDINC=$(INCOLDBSD)
5SRCS=	main.c getinfo.c debug.c send.c skip.c list.c subr.c
6OBJS+=	commands.o
7MAN8=	nslookup.0
8LFLAGS=	-I
9CFLAGS+=-I${.CURDIR}
10DPADD=	${LIBLN}
11LDADD=	-lln
12CLEANFILES+=commands.c lex.yy.c lex.yy.o
13
14beforeinstall:
15	install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${.CURDIR}/nslookup.help \
16	    ${DESTDIR}/usr/share/misc
17
18.include "../../../Makefile.inc"
19.include <bsd.prog.mk>
20