xref: /minix3/tests/lib/libc/rpc/Makefile (revision 11be35a165022172ed3cea20f2b5df0307540b0e)
1# $NetBSD: Makefile,v 1.2 2013/02/26 17:06:55 christos Exp $
2
3MKMAN=	no
4
5.include <bsd.own.mk>
6
7TESTSDIR=		${TESTSBASE}/lib/libc/rpc
8
9TESTS_C=		t_xdr
10SRCS.t_xdr=		${RPCSRCS:.x=_xdr.c} t_xdr.c
11
12TESTS_C+=		t_rpc
13
14RPCSRCS=		h_testbits.x
15DPSRCS=			${RPCSRCS:.x=.h}
16CLEANFILES+=	${RPCSRCS:.x=.h} ${RPCSRCS:.x=_xdr.c}
17CPPFLAGS+=		-I.
18RPC_INCS=		${RPCSRCS:.x=.h}
19RPC_XDRFILES=	${RPCSRCS:.x=_xdr.c}
20
21.include <bsd.rpc.mk>
22.include <bsd.test.mk>
23
24