diff options
Diffstat (limited to 'lib/libc/rpc/Makefile')
-rw-r--r-- | lib/libc/rpc/Makefile | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/lib/libc/rpc/Makefile b/lib/libc/rpc/Makefile new file mode 100644 index 000000000000..e32a7d97504b --- /dev/null +++ b/lib/libc/rpc/Makefile @@ -0,0 +1,23 @@ +# $NetBSD: Makefile,v 1.2 2013/02/26 17:06:55 christos Exp $ + +MKMAN= no + +.include <bsd.own.mk> + +TESTSDIR= ${TESTSBASE}/lib/libc/rpc + +TESTS_C= t_xdr +SRCS.t_xdr= ${RPCSRCS:.x=_xdr.c} t_xdr.c + +TESTS_C+= t_rpc + +RPCSRCS= h_testbits.x +DPSRCS= ${RPCSRCS:.x=.h} +CLEANFILES+= ${RPCSRCS:.x=.h} ${RPCSRCS:.x=_xdr.c} +CPPFLAGS+= -I. +RPC_INCS= ${RPCSRCS:.x=.h} +RPC_XDRFILES= ${RPCSRCS:.x=_xdr.c} + +.include <bsd.rpc.mk> +.include <bsd.test.mk> + |