Makefile revision 1.15
1#	$NetBSD: Makefile,v 1.15 1998/02/18 03:55:19 perry Exp $
2
3PROG =	rpc.rstatd
4.PATH: ${.CURDIR}/../../usr.bin/vmstat
5
6CPPFLAGS+=-I${.CURDIR}/../../usr.bin/vmstat
7SRCS =	dkstats.c rstatd.c rstat_proc.c
8MAN =	rpc.rstatd.8
9MLINKS=	rpc.rstatd.8 rstatd.8
10
11DPADD=	${LIBRPCSVC} ${LIBKVM}
12LDADD=	-lrpcsvc -lkvm
13
14.include <bsd.prog.mk>
15
16# XXX
17.if defined(UVM)
18CPPFLAGS+=      -DUVM
19.endif
20.if defined(PMAP_NEW)
21CPPFLAGS+=      -DPMAP_NEW
22.endif
23