blob: e724e739b665abb88b4fd40d4ef444ba71a7cb7f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# $Id: Makefile,v 1.3 1999/11/30 07:39:26 art Exp $
PROG = rpc.rstatd
.PATH: ${.CURDIR}/../../usr.bin/vmstat
CFLAGS+=-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>
.if (${UVM} == "yes")
CFLAGS+=-DUVM
.endif
|