20 lines
378 B
Makefile
20 lines
378 B
Makefile
# $NetBSD: Makefile,v 1.14 1998/02/09 06:25:20 mrg 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
|