23 lines
436 B
Makefile
23 lines
436 B
Makefile
# $NetBSD: Makefile,v 1.15 1998/02/18 03:55:19 perry Exp $
|
|
|
|
PROG = rpc.rstatd
|
|
.PATH: ${.CURDIR}/../../usr.bin/vmstat
|
|
|
|
CPPFLAGS+=-I${.CURDIR}/../../usr.bin/vmstat
|
|
SRCS = dkstats.c rstatd.c rstat_proc.c
|
|
MAN = rpc.rstatd.8
|
|
MLINKS= rpc.rstatd.8 rstatd.8
|
|
|
|
DPADD= ${LIBRPCSVC} ${LIBKVM}
|
|
LDADD= -lrpcsvc -lkvm
|
|
|
|
.include <bsd.prog.mk>
|
|
|
|
# XXX
|
|
.if defined(UVM)
|
|
CPPFLAGS+= -DUVM
|
|
.endif
|
|
.if defined(PMAP_NEW)
|
|
CPPFLAGS+= -DPMAP_NEW
|
|
.endif
|