xref: /netbsd-src/usr.bin/rpcinfo/Makefile (revision 8ac07aec990b9d2e483062509d0a9fa5b4f57cf2)
1#	$NetBSD: Makefile,v 1.12 2007/05/28 18:12:06 tls Exp $
2#	from: @(#)Makefile	5.2 (Berkeley) 5/11/90
3
4.include <bsd.own.mk>
5
6USE_FORT?= yes	# network client
7
8PROG=	rpcinfo
9MAN=	rpcinfo.8
10SRCS=	rpcinfo.c
11
12CPPFLAGS+=	-DPORTMAP
13
14.if (${USE_INET6} != "no")
15CPPFLAGS+=	-DINET6
16.endif
17
18.PATH:	${LIBCRPCDIR}
19
20.include <bsd.prog.mk>
21