Home | History | Annotate | Line # | Download | only in rpcbind
Makefile revision 1.15
      1  1.15       roy #	$NetBSD: Makefile,v 1.15 2019/04/24 10:27:49 roy Exp $
      2   1.4     lukem 
      3   1.4     lukem .include <bsd.own.mk>
      4   1.1      fvdl 
      5  1.10       tls USE_FORT?= yes	# network client
      6   1.8       tls 
      7   1.1      fvdl PROG=	rpcbind
      8   1.1      fvdl MAN=	rpcbind.8
      9   1.1      fvdl SRCS=	check_bound.c rpcb_stat.c rpcb_svc_4.c rpcbind.c pmap_svc.c \
     10   1.9  christos 	rpcb_svc.c rpcb_svc_com.c security.c warmstart.c util.c 
     11   1.1      fvdl 
     12   1.4     lukem LIBCDIR=        ${NETBSDSRCDIR}/lib/libc
     13   1.1      fvdl LIBCRPCDIR=     ${LIBCDIR}/rpc
     14   1.1      fvdl 
     15   1.9  christos CPPFLAGS+=	-I${LIBCRPCDIR} -DPORTMAP -DLIBWRAP
     16   1.6     lukem 
     17   1.6     lukem .if (${USE_INET6} != "no")
     18   1.5      matt CPPFLAGS+=	-DINET6
     19   1.5      matt .endif
     20   1.1      fvdl 
     21  1.15       roy .if (${USE_YP} != "no")
     22  1.15       roy CPPFLAGS+=	-DYP
     23  1.15       roy .endif
     24  1.15       roy 
     25  1.11       dsl # Uncomment these to get any useful output from 'rpcbind -d'
     26  1.11       dsl # CPPFLAGS+=	-DRPCBIND_DEBUG
     27  1.11       dsl # CPPFLAGS+=	-DSVC_RUN_DEBUG
     28  1.11       dsl 
     29   1.1      fvdl LDADD+= -lwrap -lutil
     30   1.1      fvdl DPADD+= ${LIBWRAP} ${LIBUTIL}
     31   1.1      fvdl 
     32   1.1      fvdl .PATH:  ${LIBCRPCDIR}
     33   1.1      fvdl 
     34   1.1      fvdl .include <bsd.prog.mk>
     35