21 lines
490 B
Makefile
21 lines
490 B
Makefile
# $NetBSD: Makefile,v 1.8 1998/09/27 17:22:14 lukem Exp $
|
|
# from: $Id: Makefile,v 8.1 1994/12/15 06:23:48 vixie Exp
|
|
|
|
.PATH: ${.CURDIR}/../nslookup \
|
|
${.CURDIR}/../man
|
|
|
|
PROG= nslookup
|
|
SRCS= main.c getinfo.c debug.c send.c skip.c list.c subr.c commands.l
|
|
CPPFLAGS+= ${INCLUDE}
|
|
DPADD= ${LIBL}
|
|
LDADD= -ll
|
|
CLEANFILES+= commands.c lex.yy.c lex.yy.o
|
|
MAN= nslookup.8
|
|
.if !defined(NOSHARE)
|
|
FILES= nslookup.help
|
|
FILESDIR=/usr/share/misc
|
|
.endif
|
|
|
|
.include "../../Makefile.inc"
|
|
.include <bsd.prog.mk>
|