blob: dbb5e1389c9961380fb5c9c1ca65e615d0fd4401 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# $Id: Makefile,v 1.4 2000/09/03 18:41:15 espie 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:L} == "yes")
CFLAGS+=-DUVM
.endif
|