NetBSD/usr.bin/rpcinfo/Makefile

23 lines
373 B
Makefile
Raw Normal View History

# $NetBSD: Makefile,v 1.16 2019/10/13 07:28:16 mrg Exp $
1993-07-31 03:49:23 +04:00
# from: @(#)Makefile 5.2 (Berkeley) 5/11/90
1993-04-03 04:52:27 +04:00
.include <bsd.own.mk>
USE_FORT?= yes # network client
2007-05-28 16:06:17 +04:00
1993-04-03 04:52:27 +04:00
PROG= rpcinfo
1994-12-22 15:30:38 +03:00
MAN= rpcinfo.8
SRCS= rpcinfo.c
2007-05-27 03:00:22 +04:00
CPPFLAGS+= -DPORTMAP
.if (${USE_INET6} != "no")
CPPFLAGS+= -DINET6
.endif
.PATH: ${LIBCRPCDIR}
1993-04-03 04:52:27 +04:00
COPTS.rpcinfo.c+= ${GCC_NO_CAST_FUNCTION_TYPE}
1993-04-03 04:52:27 +04:00
.include <bsd.prog.mk>