repo.or.cz
/
freebsd-src
/
fkvm-freebsd.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
turns printfs back on
[freebsd-src/fkvm-freebsd.git]
/
usr.sbin
/
ifmcstat
/
Makefile
blob
62de0b9485a09c4b34bea49602d76015ce2ca2dd
1
# @(#)Makefile 8.1 (Berkeley) 6/5/93
2
# $FreeBSD$
3
4
.
include
<
bsd.own.mk
>
5
6
PROG
=
ifmcstat
7
MAN
=
ifmcstat
.8
8
BINMODE
=
550
9
10
WARNS?
=
2
11
12
.if
${
MK_INET6_SUPPORT
} !=
"no"
13
CFLAGS
+=-
DINET6
14
.
endif
15
16
.if
${
MK_KVM_SUPPORT
} !=
"no"
17
CFLAGS
+=-
DWITH_KVM
18
DPADD
= ${
LIBKVM
}
19
LDADD
= -
lkvm
20
.
endif
21
22
.
include
<
bsd.prog.mk
>